<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: WP Plugin: Top 10 posts with Widgets Support</title>
	<atom:link href="http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/</link>
	<description>Weblog Tools Blogging Tools Blog</description>
	<pubDate>Mon, 12 May 2008 14:42:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: What are your top posts? &#171; Karen Zara Dwells Here</title>
		<link>http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-1171460</link>
		<dc:creator>What are your top posts? &#171; Karen Zara Dwells Here</dc:creator>
		<pubDate>Thu, 04 Oct 2007 23:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-1171460</guid>
		<description>[...] Top 10 Posts With Widgets Support - The name says it all. Click here to find the original Top 10 Posts [...]</description>
		<content:encoded><![CDATA[<p>[...] Top 10 Posts With Widgets Support - The name says it all. Click here to find the original Top 10 Posts [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Top Posts By Category mais sans compter vos visites &#187; Open Source DZ</title>
		<link>http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-1164465</link>
		<dc:creator>Top Posts By Category mais sans compter vos visites &#187; Open Source DZ</dc:creator>
		<pubDate>Sat, 21 Jul 2007 19:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-1164465</guid>
		<description>[...] la même façon, vous pourrez modifier les plugin équivalents comme Top 10 posts ou Daily Top 10 [...]</description>
		<content:encoded><![CDATA[<p>[...] la même façon, vous pourrez modifier les plugin équivalents comme Top 10 posts ou Daily Top 10 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joern</title>
		<link>http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-1149327</link>
		<dc:creator>Joern</dc:creator>
		<pubDate>Sat, 17 Feb 2007 17:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-1149327</guid>
		<description>In Wordpress 2.1 this plugin doesn't count correctly</description>
		<content:encoded><![CDATA[<p>In Wordpress 2.1 this plugin doesn&#8217;t count correctly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lincoln</title>
		<link>http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-609809</link>
		<dc:creator>Lincoln</dc:creator>
		<pubDate>Sun, 30 Jul 2006 21:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-609809</guid>
		<description>Just reporting a bug:  the Top 10 posts also lists PRIVATE posts that you have made, though clicking on them results in a 404 error.  Still, I'd prfer the private posts not show up at all on the list.  :-(</description>
		<content:encoded><![CDATA[<p>Just reporting a bug:  the Top 10 posts also lists PRIVATE posts that you have made, though clicking on them results in a 404 error.  Still, I&#8217;d prfer the private posts not show up at all on the list.  <img src='http://weblogtoolscollection.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tzMartin</title>
		<link>http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-417644</link>
		<dc:creator>tzMartin</dc:creator>
		<pubDate>Sun, 11 Jun 2006 04:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-417644</guid>
		<description>I have modified this plugin so that it will work with Polyglot (i.e. the original one does not). The modifications are marked between â€œPolyglot begins/endsâ€, just in case anybody interested.

&lt;code&gt;

function show_pop_posts() {
	global $wpdb, $siteurl, $tableposts, $id;
	$results = $wpdb-&#62;get_results("select postnumber, cntaccess from mostAccessed ORDER BY cntaccess DESC LIMIT 10");
	echo "";
	if ($results) {
		foreach ($results as $result) {
// Polyglot begins
			if (function_exists('lang_picker_respect_more')) {
				$result-&#62;postnumber = lang_picker_respect_more($result-&#62;postnumber);
			} 
// Polyglot ends
			echo '&lt;a&gt;postnumber).'"&#62;'.lang_picker_respect_more(get_the_title($result-&#62;postnumber)).'&lt;/a&gt; ('.$result-&#62;cntaccess.')';
		}
	}
	echo "";
}

&lt;/code&gt;

Just cut and paste the function into the Top10.php plugin.  If you have problems, you can download the mod file here:
http://www.tzmartin.com/downloads/wordpress/plugins/top10.phps

(just rename the file and upload it to your 'plugins' folder.)
http://www.tzmartin.com/blog/files/

</description>
		<content:encoded><![CDATA[<p>I have modified this plugin so that it will work with Polyglot (i.e. the original one does not). The modifications are marked between â€œPolyglot begins/endsâ€, just in case anybody interested.</p>
<p><code></p>
<p>function show_pop_posts() {<br />
	global $wpdb, $siteurl, $tableposts, $id;<br />
	$results = $wpdb-&gt;get_results("select postnumber, cntaccess from mostAccessed ORDER BY cntaccess DESC LIMIT 10");<br />
	echo "";<br />
	if ($results) {<br />
		foreach ($results as $result) {<br />
// Polyglot begins<br />
			if (function_exists('lang_picker_respect_more')) {<br />
				$result-&gt;postnumber = lang_picker_respect_more($result-&gt;postnumber);<br />
			}<br />
// Polyglot ends<br />
			echo '<a>postnumber).&#8217;&#8221;&gt;&#8217;.lang_picker_respect_more(get_the_title($result-&gt;postnumber)).&#8217;</a> (&#8217;.$result-&gt;cntaccess.&#8217;)';<br />
		}<br />
	}<br />
	echo &#8220;&#8221;;<br />
}</p>
<p></code></p>
<p>Just cut and paste the function into the Top10.php plugin.  If you have problems, you can download the mod file here:<br />
<a href="http://www.tzmartin.com/downloads/wordpress/plugins/top10.phps">http://www.tzmartin.com/downloads/wordpress/plugins/top10.phps</a></p>
<p>(just rename the file and upload it to your &#8216;plugins&#8217; folder.)<br />
<a href="http://www.tzmartin.com/blog/files/">http://www.tzmartin.com/blog/files/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tzMartin</title>
		<link>http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-417641</link>
		<dc:creator>tzMartin</dc:creator>
		<pubDate>Sun, 11 Jun 2006 04:17:11 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2006/06/03/wp-plugin-top-10-posts-with-widgets-support/#comment-417641</guid>
		<description>I have modified this plugin so that it will work with Polyglot (i.e. the original one does not). The modifications are marked between â€œPolyglot begins/endsâ€, just in case anybody interested.

&lt;code&gt;

function show_pop_posts() {
	global $wpdb, $siteurl, $tableposts, $id;
	$results = $wpdb-&#62;get_results("select postnumber, cntaccess from mostAccessed ORDER BY cntaccess DESC LIMIT 10");
	echo "";
	if ($results) {
		foreach ($results as $result) {
// Polyglot begins
			if (function_exists('lang_picker_respect_more')) {
				$result-&#62;postnumber = lang_picker_respect_more($result-&#62;postnumber);
			} 
// Polyglot ends
			echo '&lt;a&gt;postnumber).'"&#62;'.lang_picker_respect_more(get_the_title($result-&#62;postnumber)).'&lt;/a&gt; ('.$result-&#62;cntaccess.')';
		}
	}
	echo "";
}

&lt;/code&gt;

Just cut and paste the function into the Top10.php plugin.  If you have problems, you can download the mod file here:
http://www.tzmartin.com/downloads/wordpress/plugins/top10.phps

(just rename the file and upload it to your 'plugins' folder.)
http://www.tzmartin.com/blog/files/

</description>
		<content:encoded><![CDATA[<p>I have modified this plugin so that it will work with Polyglot (i.e. the original one does not). The modifications are marked between â€œPolyglot begins/endsâ€, just in case anybody interested.</p>
<p><code></p>
<p>function show_pop_posts() {<br />
	global $wpdb, $siteurl, $tableposts, $id;<br />
	$results = $wpdb-&gt;get_results("select postnumber, cntaccess from mostAccessed ORDER BY cntaccess DESC LIMIT 10");<br />
	echo "";<br />
	if ($results) {<br />
		foreach ($results as $result) {<br />
// Polyglot begins<br />
			if (function_exists('lang_picker_respect_more')) {<br />
				$result-&gt;postnumber = lang_picker_respect_more($result-&gt;postnumber);<br />
			}<br />
// Polyglot ends<br />
			echo '<a>postnumber).&#8217;&#8221;&gt;&#8217;.lang_picker_respect_more(get_the_title($result-&gt;postnumber)).&#8217;</a> (&#8217;.$result-&gt;cntaccess.&#8217;)';<br />
		}<br />
	}<br />
	echo &#8220;&#8221;;<br />
}</p>
<p></code></p>
<p>Just cut and paste the function into the Top10.php plugin.  If you have problems, you can download the mod file here:<br />
<a href="http://www.tzmartin.com/downloads/wordpress/plugins/top10.phps">http://www.tzmartin.com/downloads/wordpress/plugins/top10.phps</a></p>
<p>(just rename the file and upload it to your &#8216;plugins&#8217; folder.)<br />
<a href="http://www.tzmartin.com/blog/files/">http://www.tzmartin.com/blog/files/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
