<?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>Create A Website &#187; wordpress</title>
	<atom:link href="http://www.createwebsite.info/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.createwebsite.info</link>
	<description>yet another undecorated wordpress blog about web development</description>
	<lastBuildDate>Wed, 02 Jun 2010 00:26:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Upgraded!</title>
		<link>http://www.createwebsite.info/upgraded/</link>
		<comments>http://www.createwebsite.info/upgraded/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 00:05:52 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/?p=89</guid>
		<description><![CDATA[Have been meaning to try a few new WordPress Plugins and Themes and decided to use this blog for testing. So, I have finally upgraded this blog. Don&#8217;t be alarmed if you see some tweaks and changes. Will probably blog on what I find.]]></description>
			<content:encoded><![CDATA[<p>Have been meaning to try a few new WordPress Plugins and Themes and decided to use this blog for testing. So, I have finally upgraded this blog. Don&#8217;t be alarmed if you see some tweaks and changes. Will probably blog on what I find.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/upgraded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Performance: Time Consuming MySQL Queries and Caching</title>
		<link>http://www.createwebsite.info/wordpress-performance-time-consuming-mysql-queries-and-caching/</link>
		<comments>http://www.createwebsite.info/wordpress-performance-time-consuming-mysql-queries-and-caching/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:29:20 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[cpanel]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/wordpress-performance-time-consuming-mysql-queries-and-caching/</guid>
		<description><![CDATA[I have been looking at a client&#8217;s WordPress install the last few days. They have a large number of posts and page load times in general have been increasing. I installed some query logging based on the code in this article &#8230; Rails-Like SQL Query Logging in WordPress Checking over the logs it became obvious [...]]]></description>
			<content:encoded><![CDATA[<p>I have been looking at a client&#8217;s WordPress install the last few days. They have a large number of posts and page load times in general have been increasing. I installed some query logging based on the code in this article &#8230;<br />
<a href="http://www.bsdeluxe.com/2009/08/31/rails-like-sql-query-logging-in-wordpress/">Rails-Like SQL Query Logging in WordPress</a></p>
<p>Checking over the logs it became obvious that queries using SQL_CALC_FOUND_ROWS are a problem. Digging through code it appears that where a limit on results is used it uses this query modifier to allow simpler coding of paging. The problem is that since the main query to grab blog posts on the blog home page or any archive page uses this, on a large blog this becomes quite inefficient.</p>
<p>For now I have tweaked MySQL so that the <a href="http://dev.mysql.com/doc/refman/5.0/en/query-cache-configuration.html">MySQL Query Cache</a> is now larger. These articles were useful:<br />
<a href="http://www.mysqlperformanceblog.com/2006/07/27/mysql-query-cache/">MySQL Query Cache</a> (at MySQL Performance Blog)<br />
<a href="http://www.techiecorner.com/45/turn-on-mysql-query-cache-to-speed-up-mysql-query-performance/">Turn on MySQL query cache to speed up query performance?</a></p>
<p>Looking at the log after this change query times have dropped dramatically (from over 0.5 seconds and up to milliseconds). This has immediately improved performance of the blog and overall load on the server.</p>
<p>I am currently looking at some WP Caching API and plugins to further improve performance.</p>
<p>If you are looking for some more ways to speed up WordPress check out this article as a starting point:<br />
<a href="http://www.arnebrachhold.de/2007/02/16/four-plus-one-ways-to-speed-up-the-performance-of-wordpress-with-caching/">4+1 Ways To Speed Up WordPress With Caching</a></p>
<p>And &#8230; for myself &#8211; just so I remember:<br />
<a href="http://mrphp.com.au/code/code-category/miscellaneous/whm-cpanel/install-memcache-cpanel-running-centos">Install Memcache onto cPanel running CentOS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/wordpress-performance-time-consuming-mysql-queries-and-caching/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting up a scheduled event using the WordPress &#8220;Cron&#8221; functionality</title>
		<link>http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/</link>
		<comments>http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/#comments</comments>
		<pubDate>Fri, 08 May 2009 01:07:51 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/</guid>
		<description><![CDATA[The function reference for wp_schedule_event provides code examples for creating a plugin using WordPress&#8217; &#8220;Cron&#8221; or scheduling functionality. Hopefully this saves someone the few minutes it took for me to find this &#8211; pretty much everything you need to know!]]></description>
			<content:encoded><![CDATA[<p>The function reference for <a href="http://codex.wordpress.org/Function_Reference/wp_schedule_event">wp_schedule_event</a> provides code examples for creating a plugin using WordPress&#8217; &#8220;Cron&#8221; or scheduling functionality. </p>
<p>Hopefully this saves someone the few minutes it took for me to find this &#8211; pretty much everything you need to know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip: Easy Export of Nucleus CMS Posts to import into WordPress</title>
		<link>http://www.createwebsite.info/tip-easy-export-of-nucleus-cms-posts-to-import-into-wordpress/</link>
		<comments>http://www.createwebsite.info/tip-easy-export-of-nucleus-cms-posts-to-import-into-wordpress/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 02:14:13 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[tip]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/tip-easy-export-of-nucleus-cms-posts-to-import-into-wordpress/</guid>
		<description><![CDATA[I recently had to migrate blog posts in a Nucleus CMS-based blog to a WordPress blog. Nothing against Nucleus which served a purpose for a long time and is still a really powerful piece of software. The migration is more to do with my experience working with Wordpres now than the quality of Nucleus. Anyway [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to migrate blog posts in a <a href="http://nucleuscms.org/">Nucleus CMS</a>-based blog to a WordPress blog. Nothing against Nucleus which served a purpose for a long time and is still a really powerful piece of software. The migration is more to do with my experience working with Wordpres now than the quality of Nucleus. Anyway &#8230; I did a quick hunt for ways to migrate, which included some random code that referenced old versions of Nucleus and WP. I didn&#8217;t even bother with this. There is a much faster way.</p>
<p>The easy (and fast) solution proved to be modifying the Nucleus RSS feed so that it exports all the blog posts in full. These can then be imported into WordPress.</p>
<p>Steps in brief (this might be different depending on your Nucleus version):</p>
<ol>
<li>Edit the skin for xmlrss2 in Nucleus. Find this (or similar) <%blog(xmlrss2,10)%> and change it to <%blog(xmlrss2,1000)%> where the second number is larger than the number of posts in your blog.</li>
<li>Edit the template for xmlrss2 in Nucleus. It will probably look something like this:
<pre>&lt;item&gt;&lt;title&gt;&lt;%syndicate_title%&gt;&lt;/title&gt;
 &lt;link&gt;&lt;%blogurl%&gt;index.php?itemid=&lt;%itemid%&gt;&lt;/link&gt;
&lt;description&gt;&lt;%syndicate_description%&gt;&lt;/description&gt;
 &lt;category&gt;&lt;%category%&gt;&lt;/category&gt;
 &lt;pubDate&gt;&lt;%date(rfc822)%&gt;&lt;/pubDate&gt;
&lt;/item&gt;</pre>
<p>Change it to:</p>
<pre>&lt;item&gt;
 &lt;title&gt;&lt;%syndicate_title%&gt;&lt;/title&gt;
 &lt;link&gt;&lt;%blogurl%&gt;index.php?itemid=&lt;%itemid%&gt;&lt;/link&gt;
&lt;content:encoded&gt;&lt;![CDATA[&lt;%body%&gt;
]]&gt;&lt;/content:encoded&gt;
 &lt;category&gt;&lt;%category%&gt;&lt;/category&gt;
 &lt;pubDate&gt;&lt;%date(rfc822)%&gt;&lt;/pubDate&gt;
&lt;/item&gt;</pre>
</li>
<li>Open the Nucleus RSS feed in a browser (it should be really long and include the content of all your blog posts). Save the source (nucleusexport.xml for example).</li>
<li>Reset the changes to the Nucleus templates and skins above so your feed is back to normal.</li>
<li>Import the RSS feed into your WordPress site (this used to be under the Manage tab, it is under Tools now).</li>
</ol>
<p>Note: this won&#8217;t migrate comments and maybe other stuff that is important to you. This is purely the post content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/tip-easy-export-of-nucleus-cms-posts-to-import-into-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GZIP compression not supported by WordPress 2.5+ (and what to do)</title>
		<link>http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/</link>
		<comments>http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 11:19:41 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/</guid>
		<description><![CDATA[I noticed that the GZIP compression option was no longer there in WordPress after version 2.5. This is recommended to be performed by the server now using mod_deflate. If you don&#8217;t have access to mod_deflate, i.e. if you are on a uncooperative shared host, you can use this method using .htaccess &#8230; Speed Up Your [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed that the GZIP compression option was no longer there in WordPress after version 2.5. This is recommended to be performed by the server now using <a href="http://httpd.apache.org/docs/2.0/mod/mod_deflate.html">mod_deflate</a>.</p>
<p>If you don&#8217;t have access to mod_deflate, i.e. if you are on a uncooperative shared host, you can use this method using .htaccess &#8230;<br />
<a href="http://mattsblog.ca/2008/04/07/speed-up-your-blog-using-zlib/">Speed Up Your Blog Using ZLIB</a></p>
<p>If that doesn&#8217;t work you may be on a phpSuExec server. Create a file called php.ini in the root of your WordPress install with the following contents &#8230;</p>
<p>zlib.output_compression = On</p>
<p>You can test here:<br />
<a href="http://www.gidnetwork.com/tools/gzip-test.php">http://www.gidnetwork.com/tools/gzip-test.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improving WordPress Performance</title>
		<link>http://www.createwebsite.info/improving-wordpress-performance/</link>
		<comments>http://www.createwebsite.info/improving-wordpress-performance/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 13:56:30 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/improving-wordpress-performance/</guid>
		<description><![CDATA[Looking at using WordPress on a site that needs to handles many requests? This presentation discusses and refers to methods improve performance of your WordPress-based site.]]></description>
			<content:encoded><![CDATA[<p>Looking at using WordPress on a site that needs to handles many requests? This presentation discusses and refers to methods improve performance of your WordPress-based site.</p>
<div style="width:425px;text-align:left" id="__ss_81181"><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=high-performance-wordpress4740&#038;stripped_title=high-performance-wordpress" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=high-performance-wordpress4740&#038;stripped_title=high-performance-wordpress" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/improving-wordpress-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modifying WordPress Rewrite Rules &#8211; small problem + solution</title>
		<link>http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/</link>
		<comments>http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 17:05:48 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/</guid>
		<description><![CDATA[add_filter('rewrite_rules_array','yourawesomefunction'); I had to look at the WordPress core code to work this out &#8211; thought I was going nuts. If you apply new rewrite rules using the rewrite_rules_array filter you need to ensure that you refresh the rewrite rules that WordPress has stored in a hidden option. You do this by simply resaving the [...]]]></description>
			<content:encoded><![CDATA[<p><code>add_filter('rewrite_rules_array','yourawesomefunction');</code></p>
<p>I had to look at the WordPress core code to work this out &#8211; thought I was going nuts. If you apply new rewrite rules using the rewrite_rules_array filter you need to ensure that you refresh the rewrite rules that WordPress has stored in a hidden option. You do this by simply resaving the Permalink Structure under the Options menu in the admin area of your WP install. </p>
<p>Not immediately obvious that this would be required, but makes sense that they generate the rules and store them at this point.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free PHP Peelads &#8211; with plugin version for WordPress</title>
		<link>http://www.createwebsite.info/free-php-peelads-with-plugin-version-for-wordpress/</link>
		<comments>http://www.createwebsite.info/free-php-peelads-with-plugin-version-for-wordpress/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 04:09:47 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/free-php-peelads-with-plugin-version-for-wordpress/</guid>
		<description><![CDATA[I have seen Peelads running on a few sites. I like them as a non-obtrusive way to feature content or ads. I thought there must be some free code to run them. Sure enough, there is &#8211; Pageear. What is even better is there are plugins for CMS software, including this WordPress Pagepeel Plugin. Very [...]]]></description>
			<content:encoded><![CDATA[<p>I have seen Peelads running on a few sites. I like them as a non-obtrusive way to feature content or ads. I thought there must be some free code to run them. Sure enough, there is  &#8211; <a href="http://www.webpicasso.de/blog/pageear-free-peel-away-ad/">Pageear</a>.</p>
<p>What is even better is there are plugins for CMS software, including this <a href="http://www.webpicasso.de/blog/wordpress-pagepeel-plugin/">WordPress Pagepeel Plugin</a>. Very easy to install and configure. Just upload a 100&#215;100 image and a 500&#215;500 image for the initial peel and the full display and set a URL.</p>
<p>Works well. Recommended.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/free-php-peelads-with-plugin-version-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bbPress is easy</title>
		<link>http://www.createwebsite.info/bbpress-is-easy/</link>
		<comments>http://www.createwebsite.info/bbpress-is-easy/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 01:10:27 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[bbPress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/bbpress-is-easy/</guid>
		<description><![CDATA[In the last month I have had to install two forums, SMF and bbPress, and deal with a forum install using phpBB. By far the easiest to install and configure is bbPress (from the same people as WordPress). The others have pages of configuration options related to all tehir features. Frankly, unless your forum is [...]]]></description>
			<content:encoded><![CDATA[<p>In the last month I have had to install two forums, SMF and bbPress, and deal with a forum install using phpBB. By far the easiest to install and configure is <a href="http://bbpress.org/">bbPress</a> (from the same people as WordPress). The others have pages of configuration options related to all tehir features. Frankly, unless your forum is targeting geeks or a bunch of people familiar with the overblown features of most forum software then go for bbPress. It also integrates easily with a WordPress install. I had the forum up with template and functionality customized in a couple of hours. The plugin architecture allows adding features easily. Development seems to be a bit slower and quieter than most forums but this seems ideal for a simple forum.</p>
<p>Hint: if you want to use this for a private forum for your business check out these plugins &#8230;<br />
<a href="http://bbpress.org/plugins/topic/force-login/">Force Login to view the forum</a><br />
<a href="http://bbpress.org/plugins/topic/restrict-registration-for-bbpress/">Restrict Registration</a> &#8211; only allow registration from people with an email address at particular domains (i.e. yourcompany.com)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/bbpress-is-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiled list of the best WordPress Plugins</title>
		<link>http://www.createwebsite.info/compiled-list-of-the-best-wordpress-plugins/</link>
		<comments>http://www.createwebsite.info/compiled-list-of-the-best-wordpress-plugins/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 03:58:00 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/compiled-list-of-the-best-wordpress-plugins/</guid>
		<description><![CDATA[There are lots of lists of the best WordPress Plugins. This article compiles the data from 48 lists &#8211; which mention 280 plugins in total &#8211; and creates a list of the top 30. A good place to start before installing something random.read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>There are lots of lists of the best WordPress Plugins. This article compiles the data from 48 lists &#8211; which mention 280 plugins in total &#8211; and creates a list of the top 30. A good place to start before installing something random.<br/><br/><a href="http://www.staska.net/2007/03/27/top-30-wordpress-plugins-in-blogosphere/">read more</a> | <a href="/software/Top_30_Wordpress_Plugins_in_Blogosphere">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/compiled-list-of-the-best-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin that adds an RSS footer to &#8220;foil scrapers&#8221;</title>
		<link>http://www.createwebsite.info/wordpress-plugin-that-adds-an-rss-footer-to-foil-scrapers/</link>
		<comments>http://www.createwebsite.info/wordpress-plugin-that-adds-an-rss-footer-to-foil-scrapers/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 23:09:48 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/wordpress-plugin-that-adds-an-rss-footer-to-foil-scrapers/</guid>
		<description><![CDATA[Adds a footer to a blog post in an RSS feed that links back to the original blog post.read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>Adds a footer to a blog post in an RSS feed that links back to the original blog post.<br/><br/><a href="http://www.joostdevalk.nl/make-the-scrapers-work-for-you/">read more</a> | <a href="/tech_news/How_to_foil_scrapers_on_your_Wordpress_blog">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/wordpress-plugin-that-adds-an-rss-footer-to-foil-scrapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some of the best WordPress Themes</title>
		<link>http://www.createwebsite.info/some-of-the-best-wordpress-themes/</link>
		<comments>http://www.createwebsite.info/some-of-the-best-wordpress-themes/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 23:00:15 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/some-of-the-best-wordpress-themes/</guid>
		<description><![CDATA[Reminder to self: check this out in more detail and find some new themes to use &#8230;read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>Reminder to self: check this out in more detail and find some new themes to use &#8230;<br/><br/><a href="http://www.smashingmagazine.com/2008/01/08/100-excellent-free-high-quality-wordpress-themes/">read more</a> | <a href="/design/100_Excellent_Free_WordPress_Themes_3">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/some-of-the-best-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OK i changed wordpress&#8217; header color</title>
		<link>http://www.createwebsite.info/ok-i-changed-wordpress-header-color/</link>
		<comments>http://www.createwebsite.info/ok-i-changed-wordpress-header-color/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 14:54:02 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/ok-i-changed-wordpress-header-color/</guid>
		<description><![CDATA[not exactly revolutionary &#8211; funny that a blog about web development is using the standard wordpress template &#8211; at least the header is no longer the default colors. i might change that at some point. for anyone who doesn&#8217;t know where to do that &#8230; the &#8220;Header Image and Color&#8221; link is under your presentation [...]]]></description>
			<content:encoded><![CDATA[<p>not exactly revolutionary &#8211; funny that a blog about web development is using the standard wordpress template &#8211; at least the header is no longer the default colors. i might change that at some point.</p>
<p>for anyone who doesn&#8217;t know where to do that &#8230; the &#8220;Header Image and Color&#8221; link is under your presentation tab.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/ok-i-changed-wordpress-header-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
