<?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>cpradio's tidbits of information &#187; WordPress</title>
	<atom:link href="http://cpradio.org/categories/projects/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://cpradio.org</link>
	<description>my life experience and information that may help others find what they need</description>
	<lastBuildDate>Sat, 05 Sep 2009 12:38:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Experimenting&#8230;</title>
		<link>http://cpradio.org/personal/experimenting/</link>
		<comments>http://cpradio.org/personal/experimenting/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 12:17:00 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cpradio.org/personal/experimenting/</guid>
		<description><![CDATA[I am experimenting with my new theme, trying to get pieces of it just right, so if you have troubles reading it, please take a screenshot of it and link to it in a Comment.  The header rotates between 5 different images at random, so you may see a different one every so often.
A [...]]]></description>
			<content:encoded><![CDATA[<p>I am experimenting with my new theme, trying to get pieces of it just right, so if you have troubles reading it, please take a screenshot of it and link to it in a Comment.  The header rotates between 5 different images at random, so you may see a different one every so often.</p>
<p><strong>A little about the theme&#8230;</strong><br />
I built the theme based a bit off of K2, in that I included the code for the Sidebar Widgets.  Other than that, it does not have anything else related to K2.  Some of the plugins it uses are &#8220;Collapseable Categories&#8221;, &#8220;Bunny Tags&#8221;, &#8220;IG Syntax Hilite&#8221;, and &#8220;Sociable&#8221;.  There are a few more Admin related plugins, but those have nothing to do with the theme.</p>
<p>Depending on my satisfaction with the remaining pieces I need to work out, I may allow the theme to be downloaded, but for now, its just going to sit here until I know all is well.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/experimenting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Minor Plugin</title>
		<link>http://cpradio.org/projects/wordpress/another-minor-plugin/</link>
		<comments>http://cpradio.org/projects/wordpress/another-minor-plugin/#comments</comments>
		<pubDate>Thu, 26 May 2005 08:24:09 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cpradio.net/index.php/2005/05/26/another-minor-plugin/</guid>
		<description><![CDATA[Well, I developed another plugin, this one being very minor, as it just utilizes a built in functionality.  Simply, I wanted a quick way to enable or disable the showing of the calendar in my WordPress theme, so I created a plugin to do this.
Like my Recent Posts plugin, it requires a hook to [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I developed another plugin, this one being very minor, as it just utilizes a built in functionality.  Simply, I wanted a quick way to enable or disable the showing of the calendar in my WordPress theme, so I created a plugin to do this.</p>
<p>Like my Recent Posts plugin, it requires a hook to be added to sidebar.php.  My hook is like so:</p>
<blockquote style="text-align:left;"><p><code>&lt;?php do_action('cp_sidebar_showcalendar', ''); ?&gt;</code></p></blockquote>
<p></p>
<p>Next you will need to download the ShowCalendar.php plugin which is accessible via my <a href="/stripper/?file=/wp-content/plugins/ShowCalendar.php" target="_blank">Stripper</a> program.  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/projects/wordpress/another-minor-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First WordPress Plugin!</title>
		<link>http://cpradio.org/projects/wordpress/first-wordpress-plugin/</link>
		<comments>http://cpradio.org/projects/wordpress/first-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 25 May 2005 09:27:54 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cpradio.net/index.php/2005/05/25/first-wordpress-plugin/</guid>
		<description><![CDATA[Okay, I have been fascinated with WordPress ever since I started to use it and I must admit, it has turned out nicely.  Considering my fascination, I just had to write a plugin.  Since I am showing a single post per page, I decided a &#8216;Recent Posts&#8217; would be an acceptable plugin.
To get [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, I have been fascinated with WordPress ever since I started to use it and I must admit, it has turned out nicely.  Considering my fascination, I just had to write a plugin.  Since I am showing a single post per page, I decided a &#8216;Recent Posts&#8217; would be an acceptable plugin.</p>
<p>To get the ball rolling, I quickly learned that there is no &#8216;hook&#8217; for the sidebar.php template.  So I added the code:</p>
<blockquote style="text-align:left;"><p><code>&lt;?php do_action('cp_sidebar_recentposts', ''); ?&gt;</code></p></blockquote>
<p></p>
<p>Now to get this to work properly, you will want to add it above the closing <code>&lt;/ul&gt;</code> symbol.  This way, when the recent posts section gets added, it is thrown in the  navigation menu just like the others.</p>
<p>Next you need to &#8216;Save&#8217; <a href="/stripper/?file=%2Fwp-content%2Fplugins%2FRecentPosts.php" target="_blank">this file</a> to your wp-content/plugins directory.  Click on the &#8216;Save As&#8230;&#8217; link to download the file.  Finally, upload the file and your modified sidebar.php file and then activate the plugin via your Site Admin> Plugins section.  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/projects/wordpress/first-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.193 seconds -->
