<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wordpress Technology</title>
	<atom:link href="http://wordpress-tech.info/feed" rel="self" type="application/rss+xml" />
	<link>http://wordpress-tech.info</link>
	<description>Wordpress Tips, Tutorials, Hacks</description>
	<lastBuildDate>Sat, 19 May 2012 07:45:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Remove Symbol [...] From Post Excerpt</title>
		<link>http://wordpress-tech.info/remove-symbol-from-post-excerpt.html</link>
		<comments>http://wordpress-tech.info/remove-symbol-from-post-excerpt.html#comments</comments>
		<pubDate>Sat, 19 May 2012 07:45:37 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[remove [...]]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wordpress tip]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/remove-symbol-from-post-excerpt.html</guid>
		<description><![CDATA[If in the current WordPress template the announcements are outputed by the_excerpt() function and the excerpt field is not filled, than we can watch the symbol [...]. In order to get rid of this symbol, you would only need to insert next code in the functions.php of your theme. function trim_excerpt($text) { return rtrim($text,'[...]'); } [...]<p><a href="http://wordpress-tech.info/remove-symbol-from-post-excerpt.html">Remove Symbol [...] From Post Excerpt</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/remove-symbol-from-post-excerpt.html">Remove Symbol [...] From Post Excerpt</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/remove-symbol-from-post-excerpt.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Replace [...] By Link &#8216;Read More&#8217;</title>
		<link>http://wordpress-tech.info/replace-by-link-read-more.html</link>
		<comments>http://wordpress-tech.info/replace-by-link-read-more.html#comments</comments>
		<pubDate>Fri, 18 May 2012 06:17:01 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[replace [...]]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wordpress tip]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/replace-by-link-read-more.html</guid>
		<description><![CDATA[Should you need to replace [...] by link &#8216;Read More&#8217;, you would only need to create next function in &#8216;popular&#8217; functions.php file. function trim_excerpt($text) { global $post; $moreLink = ' ... &#60;a href=&#34;' . get_permalink($post-&#62;ID) . '&#34;&#62;Read More &#38;raquo;&#60;/a&#62;'; $text = str_replace('[...]', $moreLink, $text); return $text; } add_filter('get_the_excerpt', 'trim_excerpt'); If you wish you could substitute [...]<p><a href="http://wordpress-tech.info/replace-by-link-read-more.html">Replace [...] By Link &#8216;Read More&#8217;</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/replace-by-link-read-more.html">Replace [...] By Link &#8216;Read More&#8217;</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/replace-by-link-read-more.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Output The Posts With The Specified Field/Value</title>
		<link>http://wordpress-tech.info/output-the-posts-with-the-specified-fieldvalue.html</link>
		<comments>http://wordpress-tech.info/output-the-posts-with-the-specified-fieldvalue.html#comments</comments>
		<pubDate>Thu, 17 May 2012 17:52:38 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[display posts]]></category>
		<category><![CDATA[output posts with field/value]]></category>
		<category><![CDATA[wordpress hack]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/?p=51</guid>
		<description><![CDATA[To print out the post with specified field/value we have to find the main loop to display the posts and add query_posts() function, as showed below. &#60;?php query_posts('meta_key=review_type&#38;meta_value=music'); ?&#62; &#60;?php if (have_posts()) : ?&#62; &#60;?php while (have_posts()) : the_post(); ?&#62; As a result, we have list of posts with custom field &#8216;output_type&#8217; and value &#8216;out&#8217;. [...]<p><a href="http://wordpress-tech.info/output-the-posts-with-the-specified-fieldvalue.html">Output The Posts With The Specified Field/Value</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/output-the-posts-with-the-specified-fieldvalue.html">Output The Posts With The Specified Field/Value</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/output-the-posts-with-the-specified-fieldvalue.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Highlight Last Post</title>
		<link>http://wordpress-tech.info/highlight-last-post.html</link>
		<comments>http://wordpress-tech.info/highlight-last-post.html#comments</comments>
		<pubDate>Thu, 17 May 2012 17:52:37 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[highlight last post wordpress]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wordpress tip]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/?p=47</guid>
		<description><![CDATA[There may be a need for a special appearance of the first post (for example, when you need to make a completely different design from the other posts), whether the main page, the archives, search, etc. This problem is solved by adding the special CSS-class with a simple PHP-code. Initially, we have next standard wordpress [...]<p><a href="http://wordpress-tech.info/highlight-last-post.html">Highlight Last Post</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/highlight-last-post.html">Highlight Last Post</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/highlight-last-post.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Highlight First Post</title>
		<link>http://wordpress-tech.info/highlight-first-post.html</link>
		<comments>http://wordpress-tech.info/highlight-first-post.html#comments</comments>
		<pubDate>Mon, 14 May 2012 10:12:59 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[highlight first post]]></category>
		<category><![CDATA[wordpress hack]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/highlight-first-post.html</guid>
		<description><![CDATA[Sometimes we have a need to highlight the first post in loop of main page, archive page or search page and apply different style for it. This output can be implemented by using special CSS class and simple php code. Originally we have the regular loop to output our posts: &#60;?php if (have_posts()) : ?&#62; [...]<p><a href="http://wordpress-tech.info/highlight-first-post.html">Highlight First Post</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/highlight-first-post.html">Highlight First Post</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/highlight-first-post.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Content to RSS Feed</title>
		<link>http://wordpress-tech.info/add-content-to-rss-feed.html</link>
		<comments>http://wordpress-tech.info/add-content-to-rss-feed.html#comments</comments>
		<pubDate>Sun, 13 May 2012 08:52:04 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[insert content in rss]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wordpress tip]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/add-content-to-rss-feed.html</guid>
		<description><![CDATA[Code for inserting your own content to every RSS Feed of WordPress based blog is very simple It can be usefull for inserting ads or banners. Include the code must in functions.php of your theme. function insertFeedFooter($content) { if(is_feed()) { $content.= &#38;quot;&#38;lt;h3&#38;gt;Some title&#38;lt;/h3&#38;gt;&#38;quot;; $content.= &#38;quot;&#38;lt;p&#38;gt;Some Advertisement, or code, or something else.&#38;lt;/p&#38;gt;&#38;quot;; } return $content; } [...]<p><a href="http://wordpress-tech.info/add-content-to-rss-feed.html">Add Content to RSS Feed</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/add-content-to-rss-feed.html">Add Content to RSS Feed</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/add-content-to-rss-feed.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exclude Categories From RSS</title>
		<link>http://wordpress-tech.info/exclude-categories-from-rss.html</link>
		<comments>http://wordpress-tech.info/exclude-categories-from-rss.html#comments</comments>
		<pubDate>Sat, 12 May 2012 08:33:03 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[exclude category]]></category>
		<category><![CDATA[exclude category wordpress]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wordpress tip]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/exclude-categories-from-rss.html</guid>
		<description><![CDATA[If for some reasons we have to exclude one or several categories from RSS, it can be done this way. Insert into functions.php next code. function myFilter($query) { if ($query-&#38;amp;gt;is_feed) { $query-&#38;amp;gt;set('cat','-5'); } return $query; } add_filter('pre_get_posts','myFilter'); In this case 5 means excluded category id. If we need to expel more than one categories, their [...]<p><a href="http://wordpress-tech.info/exclude-categories-from-rss.html">Exclude Categories From RSS</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/exclude-categories-from-rss.html">Exclude Categories From RSS</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/exclude-categories-from-rss.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Excerpt With Fixed Number of Words</title>
		<link>http://wordpress-tech.info/display-excerpt-with-fixed-number-of-words.html</link>
		<comments>http://wordpress-tech.info/display-excerpt-with-fixed-number-of-words.html#comments</comments>
		<pubDate>Fri, 11 May 2012 07:02:05 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[the_excerpt()]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wordpress tip]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/display-excerpt-with-fixed-number-of-words.html</guid>
		<description><![CDATA[We might have a situation, when we need to display the excerpt with the fixed number of world. To achieve that, create the next function in functions.php of the current theme: function do_excerpt($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if (count($words) &#38;amp;gt; $word_limit) array_pop($words); echo implode(' ', $words).' ...'; } After, [...]<p><a href="http://wordpress-tech.info/display-excerpt-with-fixed-number-of-words.html">Display Excerpt With Fixed Number of Words</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/display-excerpt-with-fixed-number-of-words.html">Display Excerpt With Fixed Number of Words</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/display-excerpt-with-fixed-number-of-words.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Replace Content in All Posts</title>
		<link>http://wordpress-tech.info/replace-content-in-all-posts.html</link>
		<comments>http://wordpress-tech.info/replace-content-in-all-posts.html#comments</comments>
		<pubDate>Thu, 10 May 2012 18:30:03 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress hack]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/?p=23</guid>
		<description><![CDATA[Let&#8217;s imagine we have to replace in all posts of wordpress the chunk of text at once, or highlite the word, or put the link, etc. To edit every post might take a long time. There is an elegant and simple solution to achieve the task. function replace_text($text) { $text = str_replace('WordPress', '&#60;strong&#62;WordPress&#60;/strong&#62;', $text); $text [...]<p><a href="http://wordpress-tech.info/replace-content-in-all-posts.html">Replace Content in All Posts</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/replace-content-in-all-posts.html">Replace Content in All Posts</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/replace-content-in-all-posts.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>List of The Most Commented Posts</title>
		<link>http://wordpress-tech.info/list-of-the-most-commented-posts.html</link>
		<comments>http://wordpress-tech.info/list-of-the-most-commented-posts.html#comments</comments>
		<pubDate>Wed, 09 May 2012 17:24:45 +0000</pubDate>
		<dc:creator>wp</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://wordpress-tech.info/?p=5</guid>
		<description><![CDATA[As you know the number of installed plugins affects the loading blog time. To display most commented posts without any plugin insert next code into template files (index.php, sidebar.php and so on.) &#60;ul&#62; get_results(&#34;SELECT comment_count,ID,post_title FROM $wpdb-&#62;posts ORDER BY comment_count DESC LIMIT 0 , 5&#34;); foreach ($result as $post) { setup_postdata($post); $postid = $post-&#62;ID; $title [...]<p><a href="http://wordpress-tech.info/list-of-the-most-commented-posts.html">List of The Most Commented Posts</a>
<br /> 
<div style="font-size: 9px; color: #666; text-decoration: none; "> <a href="http://wordpress-tech.info/list-of-the-most-commented-posts.html">List of The Most Commented Posts</a> <br /> 
Supported by <a href="http://cmdesign.ca" title="Vancouver Web Design" style="font-size: 9px; color: #666; text-decoration: none; ">Vancouver Web Design</a> | <a href="http://bcwebtech.info" title="Web News" style="font-size: 9px; color: #666; text-decoration: none; ">Web News</a> | <a href="http://ru.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Web and SEO Tutorials | <a href="http://aboutall.cmblog.ca" style="font-size: 9px; color: #666; text-decoration: none; ">Make Life Easy</a> | <a href="http://digital-game.co.cc" style="font-size: 9px; color: #666; text-decoration: none; ">Digital Game | <a href="http://bcwebtech.info" style="font-size: 9px; color: #666; text-decoration: none; ">Internet Marketing</a>

</div></p>
]]></description>
		<wfw:commentRss>http://wordpress-tech.info/list-of-the-most-commented-posts.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.500 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-19 07:45:49 -->
<!-- Compression = gzip -->
