<?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: WordPress Plugin: Plugin Info</title>
	<atom:link href="/wordpress-plugin-info/feed/" rel="self" type="application/rss+xml" />
	<link>https://lud.icro.us/wordpress-plugin-info/</link>
	<description></description>
	<lastBuildDate>Fri, 28 Sep 2012 22:03:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.3-alpha</generator>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-6312</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Wed, 04 Jan 2012 15:12:54 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-6312</guid>
		<description>&lt;em&gt;BandonRandon:&lt;/em&gt; No, but you could try &lt;a href=&quot;http://wordpress.org/extend/plugins/wp-plugin-data/&quot; rel=&quot;nofollow&quot;&gt;WP Plugin Data&lt;/a&gt; which is a fork of this plugin allowing you to do so. It hasn&#039;t been updated in over two years though, so may or may not work with the latest version of WordPress.</description>
		<content:encoded><![CDATA[<p><em>BandonRandon:</em> No, but you could try <a href="http://wordpress.org/extend/plugins/wp-plugin-data/" rel="nofollow">WP Plugin Data</a> which is a fork of this plugin allowing you to do so. It hasn&#8217;t been updated in over two years though, so may or may not work with the latest version of WordPress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BandonRandon</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-6311</link>
		<dc:creator>BandonRandon</dc:creator>
		<pubDate>Wed, 04 Jan 2012 09:33:05 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-6311</guid>
		<description>Is there a way to display two plugins on one page?</description>
		<content:encoded><![CDATA[<p>Is there a way to display two plugins on one page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: socrates</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-6289</link>
		<dc:creator>socrates</dc:creator>
		<pubDate>Fri, 26 Aug 2011 00:23:33 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-6289</guid>
		<description>Thank you very much for sharing this wordpress plugin. It pretty much helped me exactely with the site I needed it for.</description>
		<content:encoded><![CDATA[<p>Thank you very much for sharing this wordpress plugin. It pretty much helped me exactely with the site I needed it for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Condicioner</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-6262</link>
		<dc:creator>Condicioner</dc:creator>
		<pubDate>Wed, 02 Mar 2011 12:29:12 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-6262</guid>
		<description>good code, professional work buddy. keep it up</description>
		<content:encoded><![CDATA[<p>good code, professional work buddy. keep it up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denzel</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5938</link>
		<dc:creator>Denzel</dc:creator>
		<pubDate>Mon, 19 Jul 2010 14:59:42 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5938</guid>
		<description>Hi John,

Just to contribute some information on how to add the meta box to custom post type.
For example custom post type wp-plugins

//Check if class from plugin info WordPress Plugin is being installed and activated.
//if yes, extend it and show meta box in custom post wp-plugins.
if(class_exists(&#039;PluginInfo&#039;)){
class wp_plugins_info extends PluginInfo{
	
	function PluginInfo() {
		add_action( &#039;admin_menu&#039;,array( &amp;$this, &#039;admin_menu&#039; ) );
		}
	function admin_menu() {
		add_meta_box(
			&#039;plugininfo&#039;,
			__( &#039;Plugin Info&#039;, &#039;plugin_info&#039; ),
			array( &amp;$this, &#039;meta_box&#039; ),
			&#039;wp-plugins&#039;,
			&#039;side&#039;
		);
	}
}
$dd_wp_plugin_info = new wp_plugins_info();
}

Hope this can help other people using this plugin with custom post type.

Thanks,

Denzel</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>Just to contribute some information on how to add the meta box to custom post type.<br />
For example custom post type wp-plugins</p>
<p>//Check if class from plugin info WordPress Plugin is being installed and activated.<br />
//if yes, extend it and show meta box in custom post wp-plugins.<br />
if(class_exists(&#8216;PluginInfo&#8217;)){<br />
class wp_plugins_info extends PluginInfo{</p>
<p>	function PluginInfo() {<br />
		add_action( &#8216;admin_menu&#8217;,array( &amp;$this, &#8216;admin_menu&#8217; ) );<br />
		}<br />
	function admin_menu() {<br />
		add_meta_box(<br />
			&#8216;plugininfo&#8217;,<br />
			__( &#8216;Plugin Info&#8217;, &#8216;plugin_info&#8217; ),<br />
			array( &amp;$this, &#8216;meta_box&#8217; ),<br />
			&#8216;wp-plugins&#8217;,<br />
			&#8216;side&#8217;<br />
		);<br />
	}<br />
}<br />
$dd_wp_plugin_info = new wp_plugins_info();<br />
}</p>
<p>Hope this can help other people using this plugin with custom post type.</p>
<p>Thanks,</p>
<p>Denzel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5886</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Fri, 21 May 2010 16:27:04 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5886</guid>
		<description>Hey Denis, what problem are you seeing with the plugin in WordPress 3.0?

John</description>
		<content:encoded><![CDATA[<p>Hey Denis, what problem are you seeing with the plugin in WordPress 3.0?</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denis Polishchuk</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5884</link>
		<dc:creator>Denis Polishchuk</dc:creator>
		<pubDate>Mon, 17 May 2010 08:19:42 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5884</guid>
		<description>And the version 3.0 plugin does not work: (when will update the plugin?</description>
		<content:encoded><![CDATA[<p>And the version 3.0 plugin does not work: (when will update the plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: photowork</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5873</link>
		<dc:creator>photowork</dc:creator>
		<pubDate>Sat, 03 Apr 2010 00:02:37 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5873</guid>
		<description>Thank you for a great plugin. Iâ€™m very appreciate it. Cheers!</description>
		<content:encoded><![CDATA[<p>Thank you for a great plugin. Iâ€™m very appreciate it. Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5733</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Thu, 28 Jan 2010 22:50:29 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5733</guid>
		<description>0.7.6 is out.

* Addition of a new &lt;code&gt;plugin_info()&lt;/code&gt; template tag for displaying plugin info outside of your posts. Based on code by Melvin Ram.
* Various code improvements including caching improvements by Matt Martz.</description>
		<content:encoded><![CDATA[<p>0.7.6 is out.</p>
<p>* Addition of a new <code>plugin_info()</code> template tag for displaying plugin info outside of your posts. Based on code by Melvin Ram.<br />
* Various code improvements including caching improvements by Matt Martz.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5709</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Thu, 14 Jan 2010 15:13:48 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5709</guid>
		<description>Thanks for the heads up Dougal, much appreciated. I&#039;ll check it out once we get a 3.0 RC.</description>
		<content:encoded><![CDATA[<p>Thanks for the heads up Dougal, much appreciated. I&#8217;ll check it out once we get a 3.0 RC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dougal Campbell</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5705</link>
		<dc:creator>Dougal Campbell</dc:creator>
		<pubDate>Wed, 13 Jan 2010 20:39:33 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5705</guid>
		<description>I was going to try it out under WordPress 3.0 (svn trunk), but it doesn&#039;t appear to be saving the plugin slug info from the meta-box. Of course, the New {Post/Page/[custom-post-type]} stuff is still in flux right now, so it might &quot;fix itself&quot; later in the WP dev cycle. Just thought I&#039;d give you a heads-up, though.</description>
		<content:encoded><![CDATA[<p>I was going to try it out under WordPress 3.0 (svn trunk), but it doesn&#8217;t appear to be saving the plugin slug info from the meta-box. Of course, the New {Post/Page/[custom-post-type]} stuff is still in flux right now, so it might &#8220;fix itself&#8221; later in the WP dev cycle. Just thought I&#8217;d give you a heads-up, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hugh Johnson</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5704</link>
		<dc:creator>Hugh Johnson</dc:creator>
		<pubDate>Mon, 11 Jan 2010 07:15:38 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5704</guid>
		<description>Hi,

I have also upgraded to 2.9.1 but the problems with the Latest Change, FAQs &amp; Other Notes sections are still present as described in my previous comment (https://lud.icro.us/wordpress-plugin-info/#comment-5687 ).

Regards,

Hugh</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have also upgraded to 2.9.1 but the problems with the Latest Change, FAQs &amp; Other Notes sections are still present as described in my previous comment (<a href="/wordpress-plugin-info/#comment-5687" rel="nofollow">https://lud.icro.us/wordpress-plugin-info/#comment-5687</a> ).</p>
<p>Regards,</p>
<p>Hugh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denzel Chia</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5703</link>
		<dc:creator>Denzel Chia</dc:creator>
		<pubDate>Mon, 11 Jan 2010 05:22:21 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5703</guid>
		<description>Hi,

I have upgraded to WordPress 2.9.1 and the plugin is working now.
You are right that it is a WordPress Cron bug

Thanks!

Regards,

Denzel</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have upgraded to WordPress 2.9.1 and the plugin is working now.<br />
You are right that it is a WordPress Cron bug</p>
<p>Thanks!</p>
<p>Regards,</p>
<p>Denzel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5698</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Mon, 04 Jan 2010 17:47:39 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5698</guid>
		<description>Hi Denzel,

There is a bug in WordPress 2.9 which means the WP-Cron system may not be working properly, which will cause this plugin to not update periodically. There is also an outstanding problem with the WordPress API which I have yet to find time to look into.

Stay tuned and I&#039;ll post an update this week. John.</description>
		<content:encoded><![CDATA[<p>Hi Denzel,</p>
<p>There is a bug in WordPress 2.9 which means the WP-Cron system may not be working properly, which will cause this plugin to not update periodically. There is also an outstanding problem with the WordPress API which I have yet to find time to look into.</p>
<p>Stay tuned and I&#8217;ll post an update this week. John.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denzel Chia</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5697</link>
		<dc:creator>Denzel Chia</dc:creator>
		<pubDate>Mon, 04 Jan 2010 15:55:46 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5697</guid>
		<description>Hi,

Please help. The plugin info doesnâ€™t update for my site for quite sometime.

I had tried deactivating and reactivating plugin as well as deleting and reinstall, but it still doesn&#039;t work. Clearing my wp_super_cache plugin also doesn&#039;t help.

I am using 0.75 version of plugin info and WordPress 2.9

Thanks.

Regards,

Denzel</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Please help. The plugin info doesnâ€™t update for my site for quite sometime.</p>
<p>I had tried deactivating and reactivating plugin as well as deleting and reinstall, but it still doesn&#8217;t work. Clearing my wp_super_cache plugin also doesn&#8217;t help.</p>
<p>I am using 0.75 version of plugin info and WordPress 2.9</p>
<p>Thanks.</p>
<p>Regards,</p>
<p>Denzel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Melvin Ram</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5694</link>
		<dc:creator>Melvin Ram</dc:creator>
		<pubDate>Wed, 23 Dec 2009 06:47:38 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5694</guid>
		<description>Okay, so it is possible to use the plugin_info plugin outside of the content block. Here&#039;s how:

http://pastie.org/754165</description>
		<content:encoded><![CDATA[<p>Okay, so it is possible to use the plugin_info plugin outside of the content block. Here&#8217;s how:</p>
<p><a href="http://pastie.org/754165" rel="nofollow">http://pastie.org/754165</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Melvin Ram</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5693</link>
		<dc:creator>Melvin Ram</dc:creator>
		<pubDate>Wed, 23 Dec 2009 06:30:50 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5693</guid>
		<description>We&#039;ve just released Automatic Wordpress Backup (www.wordpressbackup.org) and at the top, I have a link to the download url. How would I use the plugin without using shortcodes? I didn&#039;t see a function to do this but it would be useful to have a plugin_info(slug, info_wanted) function that could be used in the theme.</description>
		<content:encoded><![CDATA[<p>We&#8217;ve just released Automatic WordPress Backup (www.wordpressbackup.org) and at the top, I have a link to the download url. How would I use the plugin without using shortcodes? I didn&#8217;t see a function to do this but it would be useful to have a plugin_info(slug, info_wanted) function that could be used in the theme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5690</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Wed, 16 Dec 2009 21:17:30 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5690</guid>
		<description>Thanks for the comments everyone, I&#039;ll be looking into this in the next few days.</description>
		<content:encoded><![CDATA[<p>Thanks for the comments everyone, I&#8217;ll be looking into this in the next few days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ade</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5688</link>
		<dc:creator>Ade</dc:creator>
		<pubDate>Wed, 16 Dec 2009 09:44:19 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5688</guid>
		<description>For info, I have the same issues as Hugh Johnson. This is on both 2.8.6 and 2.9 beta2.</description>
		<content:encoded><![CDATA[<p>For info, I have the same issues as Hugh Johnson. This is on both 2.8.6 and 2.9 beta2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hugh Johnson</title>
		<link>https://lud.icro.us/wordpress-plugin-info/#comment-5687</link>
		<dc:creator>Hugh Johnson</dc:creator>
		<pubDate>Mon, 14 Dec 2009 08:22:13 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-5687</guid>
		<description>John,

Looks like the wordpress.org Plugins API is still having problems. I&#039;m running 2.9 beta 2 and I&#039;m seeing the following problems:

 - Latest change is not working, no content is returned (although the full changelog still works)

 - H4 tags are not being applied to question titles in the FAQs section (by titles I mean items wrapped in `=` tags

 - H3 tags are not being applied to section titles in the Other Notes section (by section titles I mean items wrapped in `==` tags

 - Line breaks between paragraphs that are present in text in the Other Notes section are not being pulled across

Regards,

Hugh</description>
		<content:encoded><![CDATA[<p>John,</p>
<p>Looks like the wordpress.org Plugins API is still having problems. I&#8217;m running 2.9 beta 2 and I&#8217;m seeing the following problems:</p>
<p> &#8211; Latest change is not working, no content is returned (although the full changelog still works)</p>
<p> &#8211; H4 tags are not being applied to question titles in the FAQs section (by titles I mean items wrapped in `=` tags</p>
<p> &#8211; H3 tags are not being applied to section titles in the Other Notes section (by section titles I mean items wrapped in `==` tags</p>
<p> &#8211; Line breaks between paragraphs that are present in text in the Other Notes section are not being pulled across</p>
<p>Regards,</p>
<p>Hugh</p>
]]></content:encoded>
	</item>
</channel>
</rss>
