<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Prevent Update Checks for a WordPress Plugin</title>
	<atom:link href="http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 05:53:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Thany</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-896</link>
		<dc:creator>Thany</dc:creator>
		<pubDate>Sat, 23 Apr 2011 16:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-896</guid>
		<description>Oops, my bad. I didn&#039;t realize WP only checks once every 12 hours, unless something has changed. Good to know, since it&#039;s only hidden deeply in the source code and not mentioned on the plugins overview.</description>
		<content:encoded><![CDATA[<p>Oops, my bad. I didn&#8217;t realize WP only checks once every 12 hours, unless something has changed. Good to know, since it&#8217;s only hidden deeply in the source code and not mentioned on the plugins overview.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thany</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-895</link>
		<dc:creator>Thany</dc:creator>
		<pubDate>Sat, 23 Apr 2011 15:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-895</guid>
		<description>It doesn&#039;t seem to be doing anything...
I just pasted the code at the bottom of my plugin file, and *even* putting a var_dump() in the function doesn&#039;t output a single extra character. Seems the filter function is never called. What gives?</description>
		<content:encoded><![CDATA[<p>It doesn&#8217;t seem to be doing anything&#8230;<br />
I just pasted the code at the bottom of my plugin file, and *even* putting a var_dump() in the function doesn&#8217;t output a single extra character. Seems the filter function is never called. What gives?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahalie</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-828</link>
		<dc:creator>mahalie</dc:creator>
		<pubDate>Thu, 24 Mar 2011 01:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-828</guid>
		<description>Hi, thanks for your script. Love it. Word of WARNING to others: make sure you change the function name if you use this on more than one plugin. Yeah, I&#039;ve been hacking plugins - I know it&#039;s not ideal but for some reason no one does exactly what the client needs!

So my little mistake of using the same function name in two plugins got me thinking. Is there a way to this to the next level and create a plugin that disables other plugins? It seems like if you can disable all updates including core update notification one should be able to write one would list all plugins (installed or not) and selectively control update notification for each?</description>
		<content:encoded><![CDATA[<p>Hi, thanks for your script. Love it. Word of WARNING to others: make sure you change the function name if you use this on more than one plugin. Yeah, I&#8217;ve been hacking plugins &#8211; I know it&#8217;s not ideal but for some reason no one does exactly what the client needs!</p>
<p>So my little mistake of using the same function name in two plugins got me thinking. Is there a way to this to the next level and create a plugin that disables other plugins? It seems like if you can disable all updates including core update notification one should be able to write one would list all plugins (installed or not) and selectively control update notification for each?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eve</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-800</link>
		<dc:creator>eve</dc:creator>
		<pubDate>Thu, 10 Mar 2011 18:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-800</guid>
		<description>thanks! You just saved me a ton of work from having to go re-add code everytime my client updated the darn plugin herself lol</description>
		<content:encoded><![CDATA[<p>thanks! You just saved me a ton of work from having to go re-add code everytime my client updated the darn plugin herself lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chuck scott</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-773</link>
		<dc:creator>chuck scott</dc:creator>
		<pubDate>Sun, 06 Mar 2011 17:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-773</guid>
		<description>Hi Pete - this function is great and works in MultiSite 3.1 network provided that the plugin php file exists in the root plugin folder - i.e., in the wp-contents/plugins/ but if in a folder further south, e.g., wp-contents/plugins/my-custom-plugin-dir/ then it does not work and the auto check for updates still continues to run  ...

e.g., i hacked the CIMY User Manager plugin for my own import needs and the plugin typically gets installed in a folder called &quot;cimy-user-manager&quot; which is then subset of the plugins folder ... hacked plugin runs fine yet when i put your function in the main php file (ie., cimy_user_manager.php) then the auto check for updates continues thus your function does not work while in that sub folder ... if i move cimy_user_manager.php to the root plugins folder, then your function does work (meaning it stops looking to be updated) ...

thus i&#039;m not sure if your $my_plugin variable needs to be prepended with the plugin directory or ..??.. 

regardless, muchisimo gracias for sharing as it certainly helped me for now and only share as fyi in case this sub-folder thing might be issue for others ..??..

cordially, chuck scott</description>
		<content:encoded><![CDATA[<p>Hi Pete &#8211; this function is great and works in MultiSite 3.1 network provided that the plugin php file exists in the root plugin folder &#8211; i.e., in the wp-contents/plugins/ but if in a folder further south, e.g., wp-contents/plugins/my-custom-plugin-dir/ then it does not work and the auto check for updates still continues to run  &#8230;</p>
<p>e.g., i hacked the CIMY User Manager plugin for my own import needs and the plugin typically gets installed in a folder called &#8220;cimy-user-manager&#8221; which is then subset of the plugins folder &#8230; hacked plugin runs fine yet when i put your function in the main php file (ie., cimy_user_manager.php) then the auto check for updates continues thus your function does not work while in that sub folder &#8230; if i move cimy_user_manager.php to the root plugins folder, then your function does work (meaning it stops looking to be updated) &#8230;</p>
<p>thus i&#8217;m not sure if your $my_plugin variable needs to be prepended with the plugin directory or ..??.. </p>
<p>regardless, muchisimo gracias for sharing as it certainly helped me for now and only share as fyi in case this sub-folder thing might be issue for others ..??..</p>
<p>cordially, chuck scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete Mall</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-87</link>
		<dc:creator>Pete Mall</dc:creator>
		<pubDate>Sat, 10 Jul 2010 00:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-87</guid>
		<description>Works with 3.0. You may be doing something wrong.</description>
		<content:encoded><![CDATA[<p>Works with 3.0. You may be doing something wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete Mall</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-86</link>
		<dc:creator>Pete Mall</dc:creator>
		<pubDate>Sat, 10 Jul 2010 00:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-86</guid>
		<description>Yes, the plugin needs to be activated for the code to work.</description>
		<content:encoded><![CDATA[<p>Yes, the plugin needs to be activated for the code to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Verkooijen</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-85</link>
		<dc:creator>Peter Verkooijen</dc:creator>
		<pubDate>Sat, 10 Jul 2010 00:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-85</guid>
		<description>Doesn&#039;t work in Wordpress 3.0? Or am I doing something wrong...?</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t work in WordPress 3.0? Or am I doing something wrong&#8230;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arne Seemann</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-84</link>
		<dc:creator>Arne Seemann</dc:creator>
		<pubDate>Tue, 06 Jul 2010 11:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-84</guid>
		<description>Just one question regarding the code above:
does the plugin need to be activated to actually work?

In a short test with an outdated plugin (which was not active at that moment) on my Wordpress MU the code had no further effect.

However, thanks for all your exceptionally insightful posts :)</description>
		<content:encoded><![CDATA[<p>Just one question regarding the code above:<br />
does the plugin need to be activated to actually work?</p>
<p>In a short test with an outdated plugin (which was not active at that moment) on my WordPress MU the code had no further effect.</p>
<p>However, thanks for all your exceptionally insightful posts <img src='http://developersmind.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hanna Jones</title>
		<link>http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/#comment-83</link>
		<dc:creator>Hanna Jones</dc:creator>
		<pubDate>Tue, 15 Jun 2010 13:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://developersmind.com/?p=647#comment-83</guid>
		<description>Very nice, I&#039;m a huge fan of Wordpress and it&#039;s great to see new really useful plugins getting released. Going to download and check it out, looks exactly like what I was looking for for weeks. So, thanks alot!</description>
		<content:encoded><![CDATA[<p>Very nice, I&#8217;m a huge fan of WordPress and it&#8217;s great to see new really useful plugins getting released. Going to download and check it out, looks exactly like what I was looking for for weeks. So, thanks alot!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

