<?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>John Loan</title>
	<atom:link href="http://johnloan.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnloan.com</link>
	<description>Wordpress Tips From John Loan</description>
	<lastBuildDate>Fri, 12 Aug 2011 07:13:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Insert the Current Date/Time in Posts or Pages</title>
		<link>http://johnloan.com/insert-the-current-datetime-in-posts-or-pages/</link>
		<comments>http://johnloan.com/insert-the-current-datetime-in-posts-or-pages/#comments</comments>
		<pubDate>Sat, 28 May 2011 07:25:48 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=39</guid>
		<description><![CDATA[Sometimes, you may want to display the current date or time inside one of your posts and pages and have it update dynamically every time the page is loaded. We can achieve this quite simply by creating an easy shortcode &#8230; <a href="http://johnloan.com/insert-the-current-datetime-in-posts-or-pages/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometimes, you may want to display the current date or time inside one of your posts and pages and have it update dynamically every time the page is loaded.</p>
<p>We can achieve this quite simply by creating an easy shortcode in your WordPress installation.</p>
<p>To do this, add the following code to the bottom of your functions.php file. This code includes a function which checks the current date/time and then returns it when the shortcode is inserted in a post or page. You can change the way the date/time appears by using PHP date formats; the way I’ve written the code in this tutorial will return a value such as May 18, 2011.</p>
<p><code>function displaydate(){<br />
return date('F jS, Y');<br />
}<br />
add_shortcode('date', 'displaydate');</code></p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/insert-the-current-datetime-in-posts-or-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anatomy Of A WordPress Theme</title>
		<link>http://johnloan.com/anatomy-of-a-wordpress-theme/</link>
		<comments>http://johnloan.com/anatomy-of-a-wordpress-theme/#comments</comments>
		<pubDate>Sat, 14 May 2011 05:15:58 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=37</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="440" height="247" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/anatomy-of-a-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top SEO Plugins For WordPress</title>
		<link>http://johnloan.com/top-seo-plugins-for-wordpress/</link>
		<comments>http://johnloan.com/top-seo-plugins-for-wordpress/#comments</comments>
		<pubDate>Fri, 13 May 2011 08:04:50 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=32</guid>
		<description><![CDATA[http://www.youtube.com/watch?v=xJlpoGcnrgs]]></description>
			<content:encoded><![CDATA[<p>http://www.youtube.com/watch?v=xJlpoGcnrgs</p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/top-seo-plugins-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Widget Spacing</title>
		<link>http://johnloan.com/wordpress-widget-spacing/</link>
		<comments>http://johnloan.com/wordpress-widget-spacing/#comments</comments>
		<pubDate>Tue, 03 May 2011 11:34:27 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=21</guid>
		<description><![CDATA[I have found more WordPress tips and tricks this week. Once again, this came from my own struggles with getting things to look right. First, I had switched up the buttons in my sidebar on this blog. Next, I started &#8230; <a href="http://johnloan.com/wordpress-widget-spacing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have found more WordPress tips and tricks this week. Once again,  this came from my own struggles with getting things to look right.  First, I had switched up the buttons in my sidebar on this blog. Next, I  started a new blog and was attempting to get the sidebar to my liking. I  love me a WordPress Widget. Spacing, or lack thereof, between them? Not  so much. Some buttons ran together as if they were one. The ones in the  left sidebar didn’t line up with the ones in the right sidebar. It  looked like a third grader had built my blogs. In all honesty, that is  often my skill level.</p>
<p>I went on a mission to find a solution. As is always the case, most  suggestions are to get into the Theme Editor and start messing with the  CSS. Are you nuts? I don’t even know what CSS stands for. From personal  experience, I know how fast messing in there can go completely wrong…I  found a quick fix! Here it is:</p>
<p>&lt;div style=”height:10px;”&gt;&lt;/div&gt;</p>
<p>You can add that either before or after  your widget code. You can change the number in there to make a larger or  smaller space between your widgets. If the banners in the left and  right sidebar are not lining up, you can get them in order with that  nifty thing. Amazing!</p>
<p>That’s that. Easy-peasy for those of us less technically-inclined. Now go and fix your WordPress widget spacing.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/wordpress-widget-spacing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Display Facebook Status On Your Blog</title>
		<link>http://johnloan.com/how-to-display-facebook-status-on-your-blog/</link>
		<comments>http://johnloan.com/how-to-display-facebook-status-on-your-blog/#comments</comments>
		<pubDate>Tue, 03 May 2011 03:17:54 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=11</guid>
		<description><![CDATA[If you want to show your Facebook Statuses and you are hosting on a WordPress.com blog that restricts you from installing plugins, try this. The following method make use of Facebook status feed and WordPress RSS widget. It will also &#8230; <a href="http://johnloan.com/how-to-display-facebook-status-on-your-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 510px"><img class=" " title="How to Display Facebook Statuses on WordPress Blog" src="http://www.hongkiat.com/blog/wp-content/uploads/add-fbstatus-wp.jpg" alt="add fbstatus wp How to Display Facebook Statuses on WordPress Blog" width="500" height="353" /><p class="wp-caption-text">add fbstatus wp How to Display Facebook Statuses on WordPress Blog testing long caption on image thanks thank sand thanks</p></div>
<p>If you want to show your Facebook Statuses and you are <a rel="nofollow" href="http://www.hongkiat.com/blog/out/dreamhost" target="_blank">hosting</a> on a <a href="http://www.wordpress.com/">WordPress.com blog </a>that  restricts you from installing plugins, try this. The following method  make use of Facebook status feed and WordPress RSS widget. It will also  work for self-<a rel="nofollow" href="http://www.hongkiat.com/blog/out/dreamhost" target="_blank">host</a> WordPress blogs, but you guys who self-host can use better plugins for that.</p>
<p>&nbsp;</p>
<h4>Step 1</h4>
<p>Login into <a href="http://www.facebook.com/">Facebook</a>. Under <strong>Profile</strong>, look for <strong>Mini Feed</strong> column, click on <strong>See All</strong>.</p>
<p><img title="How to Display Facebook Statuses on WordPress Blog" src="http://www.hongkiat.com/blog/wp-content/uploads/minifeed-seeall.jpg" alt="minifeed seeall How to Display Facebook Statuses on WordPress Blog" width="400" height="131" /></p>
<h4>Step 2</h4>
<p>Under <strong>Mini Feed</strong>, click on ‘<strong>Status Stories</strong>‘ on the right column. Scroll all the way to the bottom, look for ‘<strong>My Status</strong>‘</p>
<p><img title="How to Display Facebook Statuses on WordPress Blog" src="http://www.hongkiat.com/blog/wp-content/uploads/my-status.jpg" alt="my status How to Display Facebook Statuses on WordPress Blog" width="400" height="132" /></p>
<h4>Step 3</h4>
<p>Copy the link of <strong>My Status</strong>, and we are about to use this in WordPress blog. Your link will look something like the following:</p>
<p><img title="How to Display Facebook Statuses on WordPress Blog" src="http://www.hongkiat.com/blog/wp-content/uploads/minifeed-link.jpg" alt="minifeed link How to Display Facebook Statuses on WordPress Blog" width="500" height="17" /></p>
<h4>Step 4 (WordPress)</h4>
<p>Under WordPress admin, Navigate to <strong>Design</strong> -&gt; <strong>Widget</strong>. Look for <strong>RSS Widget</strong>, add it to your side bar.</p>
<p><img title="How to Display Facebook Statuses on WordPress Blog" src="http://www.hongkiat.com/blog/wp-content/uploads/rss-widget.jpg" alt="rss widget How to Display Facebook Statuses on WordPress Blog" width="400" height="148" /></p>
<h4>Step 5</h4>
<p>Paste the copied URL inside, give it a name, save and your Facebook  statuses (or status depends on how many you display) will now appear on  your WordPress blog.</p>
<p><img title="How to Display Facebook Statuses on WordPress Blog" src="http://www.hongkiat.com/blog/wp-content/uploads/rss-facebook.jpg" alt="rss facebook How to Display Facebook Statuses on WordPress Blog" width="400" height="299" /></p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/how-to-display-facebook-status-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 WordPress Anti Spam Plugins</title>
		<link>http://johnloan.com/top-10-wordpress-anti-spam-plugins/</link>
		<comments>http://johnloan.com/top-10-wordpress-anti-spam-plugins/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 21:03:18 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Anti-Spam]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=19</guid>
		<description><![CDATA[As I was promissing few days ago here, I’ll name few tools that you can use to fight agains WordPress Spam. Here we go: Akismet – a very popular plugin which comes by default with wordpress. To use it, you &#8230; <a href="http://johnloan.com/top-10-wordpress-anti-spam-plugins/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As I was promissing few days ago <a title="wordpress spam" href="http://www.wordpress-how-to.com/wordpress-spam-98/" target="_blank">here</a>, I’ll name few tools that you can use to fight agains WordPress Spam.</p>
<p>Here we go:</p>
<ol>
<li><a href="http://akismet.com/" target="_blank">Akismet</a> – a very  popular plugin which comes by default with wordpress. To use it, you  need to signup for a wordpress acount and get an API key for your  website.</li>
<li><a href="http://defensio.com/" target="_blank">Defensio</a> – A wordpress plugin that helps you filter your comments and also provides rss feed for both accepted and ‘spammed’ comments.</li>
<li><a href="http://blog.zorex.info/?page_id=2" target="_blank">Simple CAPTCHA</a> – Adds turing text to your comment area to eliminate automated comments</li>
<li><a href="http://lordchaos.dominatus.net/wordpress-plugin-challenge/" target="_blank">Challenge</a> – Adds a challenge to your comments area, the regular stuff being additions and multiplications</li>
<li><a href="http://blog.taragana.com/index.php/archive/word-press-1-5-plugin-referer-bouncer/" target="_blank">Referrer Bouncer</a> – You don’t need to do anything to use it. Just activate it.</li>
<li><a href="http://guff.szub.net/2005/08/23/email-immunizer/" target="_blank">Email Immunizer</a> – Simply converts all your emails on your website to numeric references to prevent email colecting</li>
<li><a href="http://priyadi.net/archives/2005/10/07/wpbayes-naive-bayesian-comment-spam-filter-for-wordpress/" target="_blank">WPBayes</a> – Implements the spam filtering with the Naive Bayesian technique,  which means it marks the comments as spam or not based on your previous  decisions. To be honest, I didn’t use this one</li>
<li><a href="http://unknowngenius.com/blog/wordpress/spam-karma/" target="_blank">Spam Karma 2</a> – This one assigns a karma score based on multiple factors like the age  of the post, the email, if there’s a link inside, etc, etc.</li>
<li><a href="http://shwsite.org/?page_id=255" target="_blank">WP Spam Hitman</a> – It fights agains wordpress spam using a series of patterns. That’s  all I know about it, please test it and let me know if it’s a good one.</li>
<li><a href="http://www.herod.net/dypm/" target="_blank">Did you pass Math</a> – Does the same thing as the one at point #4.</li>
</ol>
<p>Well.. I think 10 tools are enough to keep you away from spam comments. Test them and use the one(s) you like the most.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/top-10-wordpress-anti-spam-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yoast WordPress SEO Plugin Review</title>
		<link>http://johnloan.com/yoast-wordpress-seo-plugin-review/</link>
		<comments>http://johnloan.com/yoast-wordpress-seo-plugin-review/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 18:28:28 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=17</guid>
		<description><![CDATA[It seems that I have turned into a salesman for a free plugin that I didn’t even write. This plugin is Joost de Valk’s WordPress SEO Plugin. I’m honestly tired of writing all the benefits in chat to friends, or &#8230; <a href="http://johnloan.com/yoast-wordpress-seo-plugin-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It seems that I have turned into a salesman for a free plugin that I didn’t even write. This plugin is Joost de Valk’s <a href="http://yoast.com/wordpress/seo/" target="_blank">WordPress SEO Plugin</a>.  I’m honestly tired of writing all the benefits in chat to friends, or  in email to clients whenever the subject of the best WordPress SEO  plugin comes up, so I might as well write a plugin review to just link  to.</p>
<h2>What does an SEO plugin do?</h2>
<p>Most  WordPress developers think an SEO plugin just lets them set the title  and description, maybe even some templates for them as Headspace2  allows. If you are savvy and know a bit about SEO, you then proceed to  install separate plugins like Robots Meta, RSS Footer, Google Sitemaps  for WordPress, Yoast Breadcrumbs, and Google Integration for webmaster  tools verification etc.</p>
<p>Since many of these plugins were written  by Joost, it only makes sense that he would roll them together into one  tool that can do some of the gruntwork of optimizing a WordPress website  for search engines. Yoast has done this, as well as provided a useful  post/page edit box to help authors create SEO friendly pages and posts.</p>
<h3>Yoast WordPress SEO features</h3>
<ul>
<li>Multisite Network settings, set a master control site.</li>
<li>Control meta tags and indexation per page, and per page template.</li>
<li> Google, Yahoo, Bing webmaster tools verification.</li>
<li>XML sitemap generation.</li>
<li>Title and description templates for post types and archives.</li>
<li>Facebook OpenGraph meta data.</li>
<li>Controlled indexation and directory snippet tags.</li>
<li>Advanced permalink controls.</li>
<li>Canonical SSL support.</li>
<li>Custom breadcrumbs.</li>
<li>RSS header and footer link templates.</li>
<li>Export settings and import from All-in-One SEO, and Headspace2.</li>
<li>Robots.txt and .htaccess file editing.</li>
<li>Rich post edit page options with snippet preview.</li>
</ul>
<h2>Plugin feature highlights</h2>
<p>I  think almost all of these settings are useful, but some of them are  less obvious, and can offer some real benefit. Here are my favorites:</p>
<h3>Multisite Network Settings</h3>
<p>WordPress  multisite gives us flexibility, and control over user permissions and  access. It’s important to make sure we don’t have users messing with our  SEO settings, especially if admins aren’t necessarily the actual site  owner. For this reason, you can limit SEO settings to Super Admin users.</p>
<p>You  can also choose a site whose settings will be used as default for new  blogs on the network, and reset the settings of a blog individually from  the network admin.</p>
<h3>Facebook OpenGraph Integration</h3>
<p>This is  pretty new, and recently added to the plugin. OpenGraph uses metatags  to give Facebook information about your site or page for display in  profile pages of users who choose to “LIKE” your posts or pages.</p>
<h3>Advanced Permalinks Options</h3>
<p>For  those of us who like our url structures to be “just so”, Yoast has  added some advanced permalink options. You can remove the category base,  enforce a trailing slash, and redirect your attachments to the parent  post. I never liked how WordPress will insert an image, and make it a  link to just the image, taking the user off the page and squandering a  precious link. This will take care of that issue.</p>
<h3>Yoast Breadcrumbs</h3>
<p>The  more complex and hierarchical your website architecture becomes, the  more beneficial it is for your users to have a breadcrumb trail like the  one above the post you are reading. I keep this blog pretty flat, but  in cases of multi-tiered websites, these are also a way to increase your  internal linking in a usable way. The crumbs work in many themes  automatically, or you can add them manually from your theme functions  file.</p>
<h3>RSS Footer Links</h3>
<p>Is your blog getting syndicated on  autoblogs and news mashup sites? Are you angry that “SOMEONE IS STEALING  MY CONTENT!!1?? Relax. Take a deep breath, and realize that this is an  opportunity to create inbound links automatically using the websites  that syndicate your content. Just set it up to link using the blog and  postname, and the syndicators will help you rank. With some creativity  and good targeting, this can be leveraged and optimized.</p>
<h3>Import / Export Options</h3>
<p>I  don’t think this needs much explanation. I love backing up settings,  and being able to reduce setup time on future projects. Being able to  import All in One SEO and Headspace2 options also lowers the barrier for  entry for many. Have no fear, you don’t have to rewrite all your titles  to try Yoast’s WordPress SEO plugin.</p>
<p>If you have read through  this, and still think that your other SEO plugin in just fine for you,  more power to you. My hope is that at least you know that not all are  equal, and there is more a plugin can do to optimize a WordPress website  than just set titles and descriptions.</p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/yoast-wordpress-seo-plugin-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin – Create SEO Friendly Search URL</title>
		<link>http://johnloan.com/wordpress-plugin-%e2%80%93-create-seo-friendly-search-url/</link>
		<comments>http://johnloan.com/wordpress-plugin-%e2%80%93-create-seo-friendly-search-url/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 08:55:24 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=14</guid>
		<description><![CDATA[Here’s an extremtly nice pluign I found mentioned in AdesBlog. This WordPress plugin turns your normal search string from: http://www.domain.com/?s=search-term into http://www.domain.com/search/search-term This plugin removes the unnecessary &#8220;?&#8221; and converts spaces (%20) into plus sign &#8220;+&#8220;, making your wordpress search &#8230; <a href="http://johnloan.com/wordpress-plugin-%e2%80%93-create-seo-friendly-search-url/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here’s an extremtly nice pluign I found mentioned in <a href="http://www.adesblog.com/2008/01/13/wp-plugin-nice-search/" target="_blank">AdesBlog</a>. This WordPress plugin turns your normal search string from:</p>
<blockquote><p>http://www.domain.com/<strong>?s=search-term</strong></p></blockquote>
<p>into</p>
<blockquote><p>http://www.domain.com/<strong>search/search-term</strong></p></blockquote>
<p>This plugin removes the unnecessary &#8220;<em>?</em>&#8221; and converts spaces <em>(%20)</em> into plus sign &#8220;<em>+</em>&#8220;, making your wordpress search string more readable, and looks good for search engine optimization.</p>
<p><a href="http://txfx.net/code/wordpress/nice-search/" target="_blank">Click here to download this plugin. </a></p>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/wordpress-plugin-%e2%80%93-create-seo-friendly-search-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Next Step After WordPress Installation</title>
		<link>http://johnloan.com/next-step-after-wordpress-installation/</link>
		<comments>http://johnloan.com/next-step-after-wordpress-installation/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 15:09:58 +0000</pubDate>
		<dc:creator>John Loan</dc:creator>
				<category><![CDATA[Installation]]></category>

		<guid isPermaLink="false">http://johnloan.com/?p=8</guid>
		<description><![CDATA[You’ve heard how good WordPress is in terms of expandability, customization and you decided to give it a try. Installing a basic copy of WordPress won’t take too long; but if you are looking for more stability, traffics, search engine &#8230; <a href="http://johnloan.com/next-step-after-wordpress-installation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img title="Youve Installed WordPress, So Whats Next?" src="http://www.hongkiat.com/blog/wp-content/uploads/wordpress-next.jpg" alt="wordpress next Youve Installed WordPress, So Whats Next?" width="500" height="157" /></p>
<p>You’ve heard how good WordPress is in terms of expandability,  customization and you decided to give it a try. Installing a basic copy  of WordPress won’t take too long; but if you are looking for more  stability, traffics, search engine optimization, etc, here’s few of my  recommendation – <strong>The things you should do after installing WordPress.</strong></p>
<p>&nbsp;</p>
<ol>
<li>
<h4>Get WordPress.com API Key, Activate Akismet</h4>
<p><img title="Youve Installed WordPress, So Whats Next?" src="http://www.hongkiat.com/blog/wp-content/uploads/akismet.jpg" alt="akismet Youve Installed WordPress, So Whats Next?" width="400" height="307" /></p>
<p><strong>Where</strong>: Settings -&gt; Akismet Configuration</p>
<p>In short, <a href="http://akismet.com/">Akismet</a> is a plugin (comes with WordPress) that will intelligently <strong>get rid of all the unnecessary comment and trackback spams</strong>. In order for Akismet to work, you’ll need a <strong>WordPress.com API Key</strong>. The key is free, but you’ll need to <a href="http://wordpress.com/api-keys/">request</a> for one and apply it on the Akismet plugin.</p>
<p><a href="http://wordpress.com/signup/">Sign up with WordPress, get Akismet Key</a>.</li>
<li>
<h4>Implement Permalinks</h4>
<p><img title="Youve Installed WordPress, So Whats Next?" src="http://www.hongkiat.com/blog/wp-content/uploads/permalinks1.jpg" alt="permalinks1 Youve Installed WordPress, So Whats Next?" width="500" height="210" /></p>
<p><strong>Where</strong>: Settings -&gt; Permalinks</p>
<p>Referring to the image above, ‘Default’ is each how your blog post  URL will look like. The ‘?=’ and numeric blog post ID does not make any  sense to the search engine, so it’s better to change them to something  more readable. Personally I’ll suggest Custom Structure and insert ‘<strong>/%postname%/</strong>‘. Here’s how your blog post URL will look like:</p>
<blockquote><p><strong>http://www.hongkiat.com/blog/2008/06/25/sample-post/</strong></p></blockquote>
</li>
<li>
<h4>Burn your feed with Feedburner</h4>
<p><img title="Youve Installed WordPress, So Whats Next?" src="http://www.hongkiat.com/blog/wp-content/uploads/feedburner.jpg" alt="feedburner Youve Installed WordPress, So Whats Next?" width="500" height="157" /></p>
<p><a href="http://www.feedburner.com/">Feedburner</a> combines all  different type of feeds into one, so your subscribers can subscribe to  one regardless of it’s type. Feedburner also comes with a chiklet,  allowing you to show off subscribers figures as well as promote  subscription.</p>
<p><a href="http://www.feedburner.com/">Sign up with Feedburner</a></li>
<li>
<h4>Read/Subscribe to WLTC</h4>
<p><img title="Youve Installed WordPress, So Whats Next?" src="http://www.hongkiat.com/blog/wp-content/uploads/wltc.jpg" alt="wltc Youve Installed WordPress, So Whats Next?" width="400" height="109" /></p>
<p><a href="http://weblogtoolscollection.com/">weblogtoolscollection.com</a> (WLTC) is where you should keep an eye on if you are particular about  your WordPress blog. These guys have the latest updates in terms of <strong>themes</strong>, <strong>plugins</strong>, <strong>tips</strong> and <strong>WordPress News</strong>. There’s perhaps no where better to get everything about WordPress on one website.</p>
<p><a href="http://weblogtoolscollection.com/">Visit WLTC</a> | <a href="http://feeds.feedburner.com/weblogtoolscollection/UXMP">Subscribe WLTC</a></li>
<li>
<h4>Plugin – Related Content</h4>
<p><img title="Youve Installed WordPress, So Whats Next?" src="http://www.hongkiat.com/blog/wp-content/uploads/relatedentries.jpg" alt="relatedentries Youve Installed WordPress, So Whats Next?" width="300" height="177" /></p>
<p>Related content plugin plays important role in helping you as the  blogger, recommending what your readers should also be reading apart of  the article they are on. You probably don’t need it now, but it’ll comes  in handy when there’s more blog post. A plugin worth mention.</p>
<p><a href="http://wasabi.pbwiki.com/Related%20Entries">Download WordPress Related Content plugin</a></li>
<li>
<h4>Plugin – Google XML Sitemap</h4>
<p>This plugin will create a Google sitemaps compliant XML-Sitemap of  your WordPress blog. It supports all of the WordPress generated pages as  well as custom ones. Everytime you edit or create a post, your sitemap  is updated and all major search engines that support the sitemap  protocol, like ASK.com, Google, MSN Search and YAHOO, are notified about  the update.</p>
<p><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Download Google XML Sitemap</a></li>
<li>
<h4>Add blog to Google Webmasters Tool</h4>
<p>Google Webmasters is a free Google service that allows you to:</p>
<ul>
<li>Manage, view site statistics</li>
<li>Bot crawling activity</li>
<li>Diagnose site</li>
<li>Submit Sitemap</li>
<li>Monitor Google indexing</li>
</ul>
<p>In short, it allows you to manage the ‘health’ of your blog.</p>
<p><a href="http://www.google.com/webmasters/tools/#utm_source=en-et-wc&amp;utm_medium=et&amp;utm_campaign=sitemaps-us-wc">Go to Google Webmaster Tool</a></li>
<li>
<h4>Add About/Contact Page</h4>
<p>This allow your readers to understand more about who’s behind the writing. It helps increase trust worthy of a site.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://johnloan.com/next-step-after-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

