<?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>Milburn &#187; Wordpress</title>
	<atom:link href="http://instantsolve.net/blog/category/webdesign/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://instantsolve.net/blog</link>
	<description>The Life and Work of Thomas Milburn</description>
	<lastBuildDate>Wed, 14 Oct 2009 10:58:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress Plugin Ideas</title>
		<link>http://instantsolve.net/blog/2008/07/wordpress-plugin-ideas/</link>
		<comments>http://instantsolve.net/blog/2008/07/wordpress-plugin-ideas/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 07:41:12 +0000</pubDate>
		<dc:creator>milburn</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://instantsolve.net/blog/?p=47</guid>
		<description><![CDATA[My first WordPress plugin, the drop caps plugin has been fairly successful so I&#8217;m looking to make a new plugin and I need some ideas. Some of my own ideas include a speedometer which measures the speed performance of your WordPress installation, analyses the speed of other plugins and your themes, checks files are cached [...]]]></description>
			<content:encoded><![CDATA[<p class="first-child "><span title="M" class="cap"><span>M</span></span>y first WordPress plugin, the drop caps plugin has been fairly successful so I&#8217;m looking to make a new plugin and I need some ideas.</p>
<p>Some of my own ideas include a speedometer which measures the speed performance of your WordPress installation, analyses the speed of other plugins and your themes, checks files are cached properly and suggests ways to speed up WordPress. <span id="more-47"></span>Another idea is a magazine plugin which allows posts to be grouped together into issues which can be published together. Finally I thought of a plugin to make event posts. These event posts would have a time and date, be integrated with calendars or displayed like usual posts in the loop and have notifications.</p>
<p>I want your input into what I should develop. Have you ever felt that WordPress is lacking a certain feature? If you have any plugins that you want developing please leave a comment. One idea <strong>will</strong> be made into a WordPress plugin.</p>
<p>As a sidenote, I&#8217;m going to be away from the 17<sup>th</sup> July to the 17<sup>th</sup> August. If you try to contact me I might take a while to reply.</p>
]]></content:encoded>
			<wfw:commentRss>http://instantsolve.net/blog/2008/07/wordpress-plugin-ideas/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Drop Caps Plugin</title>
		<link>http://instantsolve.net/blog/2008/05/drop-caps-plugin/</link>
		<comments>http://instantsolve.net/blog/2008/05/drop-caps-plugin/#comments</comments>
		<pubDate>Wed, 28 May 2008 16:26:22 +0000</pubDate>
		<dc:creator>milburn</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://instantsolve.net/blog/?p=23</guid>
		<description><![CDATA[Last time, I was showing you how to create the cool drop caps on my blog. The only problem was that I was having to write extra mark-up into each post to generate the drop caps. Extra mark-up is bad. It&#8217;s bad because if I wanted to change blogging platforms or even change theme I [...]]]></description>
			<content:encoded><![CDATA[<p class="first-child "><span title="L" class="cap"><span>L</span></span>ast time, I was showing you how to create the cool drop caps on my blog. The only problem was that I was having to write extra mark-up into each post to generate the drop caps.</p>
<p>Extra mark-up is bad. It&#8217;s bad because if I wanted to change blogging platforms or even change theme I would have to go through every post and page and remove the HTML mark-up. Not really too difficult with only 4 posts to date but if I have a hundred or so posts in the future, it becomes a real pain.<span id="more-23"></span></p>
<p>The perfect solution would be to incorporate the mark-up in my WordPress template. Unfortunately I can&#8217;t do that because WordPress uses a template tag called the_content(), this only accepts a few variables to modify the &#8220;Read more&#8230;&#8221; link. I needed to come up with a better solution. A fairly simple solution would be to hack about with some other functions to create a modified the_content() template tag.</p>
<p>While this is a much better solution I don&#8217;t really like hacking the WordPress functions. Instead I decided to build a plugin. It sounds like rather a lot of work for applying a tiny bit of styling but it enables me to create an admin page where I can turn the drop caps on and off at the click of a button. Not only that but I can offer this wonderful plugin to the rest of the world using WordPress to create wicked drop caps.</p>
<p>My thanks go to the brilliant <a title="Visit Ronald Huereca's website" rel="external" href="http://www.ronalfy.com/">Ronald Huereca</a> who wrote devlounges &#8220;<a href="http://www.devlounge.net/extras/how-to-write-a-wordpress-plugin">How to write a WordPress plugin</a>&#8220;. I used his code along with taking a peek at some other plugins.</p>
<p>I decided that while I was at it I would fix another issue with my blog theme. I use a first-child selector to choose the first paragraph of each post and make it bold. This breaks in several ways, firstly IE6 doesn&#8217;t support the selector and secondly The first paragraph is sometimes not a paragraph of text. It might be an image. To counter this my plugin also marks the first paragraph starting with a capital with a &#8220;first-child&#8221; class which I can use in my stylesheet.</p>
<p>My plugin can be downloaded from <a href="http://instantsolve.net/blog/plugins/">my plugins page</a> and from the <a href="http://wordpress.org/extend/plugins/drop-caps/">WordPress Plugin Directory</a> Of course for those who don&#8217;t want to write their own CSS like me the plugin automatically adds it&#8217;s own stylesheet to your page.</p>
]]></content:encoded>
			<wfw:commentRss>http://instantsolve.net/blog/2008/05/drop-caps-plugin/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

