<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Blog It &#187; php</title>
	<atom:link href="http://myblogit.net/category/software/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://myblogit.net</link>
	<description>We are WordPress junkies</description>
	<lastBuildDate>Mon, 11 Apr 2011 20:57:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WordPress Plugin tutorial part 2 The Header</title>
		<link>http://myblogit.net/2008/05/01/wordpress-plugin-tutorial-part-2-the-header/</link>
		<comments>http://myblogit.net/2008/05/01/wordpress-plugin-tutorial-part-2-the-header/#comments</comments>
		<pubDate>Thu, 01 May 2008 13:00:12 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress plugins]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=215</guid>
		<description><![CDATA[Ok so lets get started. create a file with your text editor. Add the following text to the very top of the file. &#60;?php /* Plugin Name: Author Plug Plugin URI: http://MyBlogIt.net/plugins Description: Displays a short bio and image for each author above or below each post. Version: 0.5 Author: David Span Author URI: http://davidspan.com/ [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Ok so lets get started. create a file with your text editor. Add the following text to the very top of the file.</p>
<p>&lt;?php<br />
/*<br />
Plugin Name: Author Plug<br />
Plugin URI: http://MyBlogIt.net/plugins<br />
Description: Displays a short bio and image for each author above or below each post.<br />
Version: 0.5<br />
Author: David Span<br />
Author URI: http://davidspan.com/<br />
*/<br />
?&gt;</p>
<h2>Plugin Header</h2>
<p>What we have just done is add our plugin&#8217;s header to the file. This information will be displayed within the plugin page of WordPress. Now save this file to your plugin directory with the name author_plug.php.</p>
<p>Congratulations, you have just created your first working plugin. If you go to your plugin page within your WordPress dashboard you can activate it.</p>
<p>Of course it does nothing at this point you can leave it active as you work on it. With what we are going to be doing it will not harm your WordPress installation.</p>
<h2>Other Files</h2>
<p>If your plugin requires other files you can include them in the plugin directory as well. Just <strong>do not</strong> include the header within them. You can also put your plugin in it&#8217;s own subdirectory as well. As long as your main plugin file has the plugin header WordPress will find it.</p>
<h2>Final Note</h2>
<p>Whenever your working with php it&#8217;s a good idea to have no white space before your open php tag. Doing so can cause php header errors.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=215&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/05/01/wordpress-plugin-tutorial-part-2-the-header/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin tutorial part 1 Planning</title>
		<link>http://myblogit.net/2008/04/28/wordpress-plugin-tutorial-part-1-planning/</link>
		<comments>http://myblogit.net/2008/04/28/wordpress-plugin-tutorial-part-1-planning/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 22:16:26 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[WordPress plugins]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=211</guid>
		<description><![CDATA[Before starting any new project it&#8217;s a very good ideal to do a little planning first. Building a WordPress plugin should be no different. There are many ways to to plan out your project. I&#8217;ll outline a few for you here. Flow chart: Using a flow chart program or just drawing one up on a [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Before starting any new project it&#8217;s a very good ideal to do a little planning first.  Building a WordPress plugin should be no different.</p>
<p>There are many ways to to plan out your project. I&#8217;ll outline a few for you here.</p>
<h2>Flow chart:</h2>
<p style="text-align: center;"><a href="http://myblogit.net/wp-content/uploads/2008/04/screenshot.jpg"><img class="size-medium wp-image-212 aligncenter" title="screenshot" src="http://myblogit.net/wp-content/uploads/2008/04/screenshot-300x196.jpg" alt="" width="219" height="144" /></a></p>
<p>Using a flow chart program or just drawing one up on a white board is a great way to outline the decision processes your plugin will follow. It&#8217;s a great way of building yourself a road map.</p>
<p><a href="http://staruml.sourceforge.net/en/">StarUML</a> is a nice open source flowchart software.</p>
<h2>Outline</h2>
<p style="text-align: center;"><img class="size-medium wp-image-213" title="outline" src="http://myblogit.net/wp-content/uploads/2008/04/example-podcast-outline-203x300.gif" alt="" width="80" height="119" /></p>
<p>This is the method I tend to use. Simply make a short outline of every thing my plugin needs to do. I sometimes expand this to include note cards or post its to  add to the out lines.</p>
<p>This is truly just a short list of ways to plot your course (Can 2 be a list?&#8230;). There are many more. What do you use to keep track of your projects?</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=211&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/04/28/wordpress-plugin-tutorial-part-1-planning/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

