<?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: 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>Web Development</description>
	<pubDate>Sat, 06 Sep 2008 02:00:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<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('plugin-admin.php');

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(&#8217;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>
	<item>
		<title>By: Powerfull List of WordPress Lifesavers Plugins</title>
		<link>http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-37733</link>
		<dc:creator>Powerfull List of WordPress Lifesavers Plugins</dc:creator>
		<pubDate>Mon, 31 Mar 2008 01:44:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/wordpress/writing-wordpress-plugins.html#comment-37733</guid>
		<description>[...] Tips to Speed Up WordPress Plug-in Development [...]</description>
		<content:encoded><![CDATA[<p>[...] Tips to Speed Up WordPress Plug-in Development [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
