<?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>Adam Mershon &#187; WordPress</title>
	<atom:link href="http://www.adammershon.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adammershon.com</link>
	<description>Business Consultant</description>
	<lastBuildDate>Wed, 01 Sep 2010 17:54:14 +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>StudioPress, CopyBlogger, Scribe SEO, Oh My!</title>
		<link>http://www.adammershon.com/studiopress-now-owned-by-copyblogger-llc/</link>
		<comments>http://www.adammershon.com/studiopress-now-owned-by-copyblogger-llc/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 14:53:16 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[copyblogger]]></category>
		<category><![CDATA[studiopress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/?p=103</guid>
		<description><![CDATA[I may be going out on a limb here, but it appears to me that either, A) Brian Gardner and Brian Clark may have teamed up to make one heck of a strong company, or B) Brian Clark and some investors now own StudioPress and some other great services/sites. Whichever is the case, congrats to [...]]]></description>
		<wfw:commentRss>http://www.adammershon.com/studiopress-now-owned-by-copyblogger-llc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remove Unnecessary Code From WordPress Header</title>
		<link>http://www.adammershon.com/remove-unnecessary-code-from-wordpress-header/</link>
		<comments>http://www.adammershon.com/remove-unnecessary-code-from-wordpress-header/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 14:17:22 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/?p=99</guid>
		<description><![CDATA[WordPress uses the function wp_head() to add a bunch of code to the header of each page. Some of it is not absolutely necessary. This is especially true when using WordPress as a small business CMS, instead of a blog. The code below removes the unnecessary code. Just add these to the end of your [...]]]></description>
		<wfw:commentRss>http://www.adammershon.com/remove-unnecessary-code-from-wordpress-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Disable Post Revisions in WordPress</title>
		<link>http://www.adammershon.com/how-to-disable-post-revisions-in-wordpress/</link>
		<comments>http://www.adammershon.com/how-to-disable-post-revisions-in-wordpress/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 00:35:28 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/how-to-disable-post-revisions-in-wordpress/</guid>
		<description><![CDATA[Since WordPress 2.6, everytime you save a post, it is saved as a revision. All previous revisions are also saved. So, 10 revisions to a post will end up with 11 posts in the database. If you don&#8217;t need this revision history, and want to slim your database, add this code to your functions.php file: [...]]]></description>
		<wfw:commentRss>http://www.adammershon.com/how-to-disable-post-revisions-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show the Number of Queries and Load Time on a WordPress Site</title>
		<link>http://www.adammershon.com/show-the-number-of-queries-and-load-time-on-a-wordpress-site/</link>
		<comments>http://www.adammershon.com/show-the-number-of-queries-and-load-time-on-a-wordpress-site/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 00:19:54 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/show-the-number-of-queries-and-load-time-on-a-wordpress-site/</guid>
		<description><![CDATA[To see the number of queries and the load time of a page, add this PHP code to the footer of your site: &#60;?php echo get_num_queries(); ?&#62; queries in &#60;?php timer_stop(1); ?&#62; seconds.]]></description>
		<wfw:commentRss>http://www.adammershon.com/show-the-number-of-queries-and-load-time-on-a-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable the AutoSave Feature in WordPress</title>
		<link>http://www.adammershon.com/disable-the-autosave-feature-in-wordpress/</link>
		<comments>http://www.adammershon.com/disable-the-autosave-feature-in-wordpress/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 01:59:47 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/disable-the-autosave-feaure-in-wordpress/</guid>
		<description><![CDATA[The autosave function in WordPress in useful in some cases. I prefer to turn it off though. To turn it off, open the function.php file that is in your theme directory and add the following code: &#60;?php function disableAutoSave(){ wp_deregister_script('autosave'); } add_action( 'wp_print_scripts', 'disableAutoSave' );&#60;/code&#62; ?&#62;]]></description>
		<wfw:commentRss>http://www.adammershon.com/disable-the-autosave-feature-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copyright Notice with Automatically Updating Year</title>
		<link>http://www.adammershon.com/copyright-notice-with-automatically-updating-year/</link>
		<comments>http://www.adammershon.com/copyright-notice-with-automatically-updating-year/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 01:13:48 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/?p=42</guid>
		<description><![CDATA[So you want the date in your copyright notice to automatically change each year? Use this code: &#60;p&#62; &#38;copy; Copyright &#60;?php echo date(&#34;Y&#34;) ?&#62; Business Name Inc. All Rights Reserved. &#60;/p&#62;]]></description>
		<wfw:commentRss>http://www.adammershon.com/copyright-notice-with-automatically-updating-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop WordPress from Removing br and p Tags</title>
		<link>http://www.adammershon.com/stop-wordpress-from-removing-br-and-p-tags/</link>
		<comments>http://www.adammershon.com/stop-wordpress-from-removing-br-and-p-tags/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 00:43:24 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/?p=34</guid>
		<description><![CDATA[WordPress has a bad habit of removing or reformatting br and p tags that are entered into posts and pages. It also does some other funky formatting that can be annoying at times. Well, here&#8217;s a way to fix this issue. Go into the theme editing area of WP admin. Add this code to your [...]]]></description>
		<wfw:commentRss>http://www.adammershon.com/stop-wordpress-from-removing-br-and-p-tags/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5.1 Upgrade: Changed Files 2.5 to 2.5.1</title>
		<link>http://www.adammershon.com/wordpress-251-upgrade-changed-files-25-to-251/</link>
		<comments>http://www.adammershon.com/wordpress-251-upgrade-changed-files-25-to-251/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 01:47:47 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/wordpress-251-upgrade-changed-files-25-to-251/</guid>
		<description><![CDATA[Disclaimer I cannot stress the crtical importance of making a full backup of your files and database before attempting to upgrade WordPress. Mistakes do happen, and things do break. Both are shortly followed by you banging your head and cursing. Save yourself the headache&#8230;Backup first, then upgrade! I should also mention that these files are [...]]]></description>
		<wfw:commentRss>http://www.adammershon.com/wordpress-251-upgrade-changed-files-25-to-251/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Best of Breed</title>
		<link>http://www.adammershon.com/wordpress-best-of-breed/</link>
		<comments>http://www.adammershon.com/wordpress-best-of-breed/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 01:42:15 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/wordpress-best-of-breed/</guid>
		<description><![CDATA[It&#8217;s a simple as the title of this post&#8230;&#8221;Best of Breed&#8221;. When it comes to online blogging applications, WordPress is Best of Breed. It&#8217;s free! But that does not make it great, just easily accessible. It has a huge following! Have a WordPress question? It&#8217;s answered in a couple hours on their forum. Need some [...]]]></description>
		<wfw:commentRss>http://www.adammershon.com/wordpress-best-of-breed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is your WordPress .htaccess file causing problems with other files?</title>
		<link>http://www.adammershon.com/wordpress-htaccess-file-causing-problems-with-other-files-directories/</link>
		<comments>http://www.adammershon.com/wordpress-htaccess-file-causing-problems-with-other-files-directories/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 06:27:47 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.adammershon.com/setup-idn-in-whm-cpanel/</guid>
		<description><![CDATA[That&#8217;s the issue I ran into. I was building a WordPress site, and put a billing/invoicing app in a subdirectory of the site. Well, the default rewrite lines (that WordPress added to the site&#8217;s htaccess file) were causing major issues for the billing script (AWBS). It was also causing problems with Apache password protecting of [...]]]></description>
		<wfw:commentRss>http://www.adammershon.com/wordpress-htaccess-file-causing-problems-with-other-files-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
