<?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: Tips on Writing WordPress Plugins</title>
	<atom:link href="http://www.askapache.com/wordpress/writing-wordpress-plugins.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/wordpress/writing-wordpress-plugins.html</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Wed, 18 Nov 2009 23:28:48 -0500</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: malatesh</title>
		<link>http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-108579</link>
		<dc:creator>malatesh</dc:creator>
		<pubDate>Mon, 09 Nov 2009 09:49:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-108579</guid>
		<description>Great Article for Beginners</description>
		<content:encoded><![CDATA[<p>Great Article for Beginners</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonie Potgieter</title>
		<link>http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-95208</link>
		<dc:creator>Antonie Potgieter</dc:creator>
		<pubDate>Fri, 14 Aug 2009 20:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-95208</guid>
		<description>Hi there. Where do you execute &lt;code&gt;get_plugin_data&lt;/code&gt;? When I try to execute it it says call to undefined function. To what action hook can I hook to execute it when it is ready?</description>
		<content:encoded><![CDATA[<p>Hi there. Where do you execute <code>get_plugin_data</code>? When I try to execute it it says call to undefined function. To what action hook can I hook to execute it when it is ready?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajasekharan</title>
		<link>http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-67824</link>
		<dc:creator>rajasekharan</dc:creator>
		<pubDate>Sun, 01 Mar 2009 07:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-67824</guid>
		<description>Great article, thanks for the wonderful tips. Wonder if there is something like this for theme development.</description>
		<content:encoded><![CDATA[<p>Great article, thanks for the wonderful tips. Wonder if there is something like this for theme development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie</title>
		<link>http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-38128</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Thu, 03 Apr 2008 03:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-38128</guid>
		<description>Another good tip. If you have a large part of your plugin code base devoted to the admin stuff, split it into another file. In your main plugin add this in:

if (is_admin())
  include(&#039;plugin-admin.php&#039;);

No need to have PHP read and compile a bunch of functions that are only used by a couple of people on a small percentage of page views. 

I been doing this on WP plugins for a couple of years. Drupal also went to a similar system with their modules in D6.</description>
		<content:encoded><![CDATA[<p>Another good tip. If you have a large part of your plugin code base devoted to the admin stuff, split it into another file. In your main plugin add this in:</p>
<p>if (is_admin())<br />
  include(&#8216;plugin-admin.php&#8217;);</p>
<p>No need to have PHP read and compile a bunch of functions that are only used by a couple of people on a small percentage of page views. </p>
<p>I been doing this on WP plugins for a couple of years. Drupal also went to a similar system with their modules in D6.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
