<?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>A Blog for Web People &#187; Wordpress</title>
	<atom:link href="http://www.pat-burt.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pat-burt.com</link>
	<description>Patrick Burt</description>
	<lastBuildDate>Wed, 17 Aug 2011 16:26:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Search Engine Optimization for WordPress &#8211; Part 3</title>
		<link>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-3/</link>
		<comments>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-3/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 16:47:10 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
				<category><![CDATA[Search Engine Optimization SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-3/</guid>
		<description><![CDATA[In Part 1 of Search Engine Optimization (SEO) for WordPress, I discussed content and directory structures. In Part 2 of the series, I discussed how to avoid duplicate content. In this edition, I will be discussing a broad range of topics. How To Link Between Posts The title attribute in your link tag (&#60;a&#62;) is [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-1/" title="Part 1 of Search Engine Optimization SEO for WordPress">Part 1 of Search Engine Optimization (SEO) for WordPress</a>, I discussed content and directory structures. In Part 2 of the series, I discussed <a href="http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-2/" title="How to avoid duplicate content in WordPress">how to avoid duplicate content</a>. In this edition, I will be discussing a broad range of topics.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<h2>How To Link Between Posts</h2>
<p>The <strong>title</strong> attribute in your link tag (<strong>&lt;a&gt;</strong>) is a great place to throw in some keywords that can benefit your destination. When linking to different pages or categories, you should be using a great <strong>title</strong> attribute as well as great link text.</p>
<p><strong>Bad Example: </strong></p>
<p>check out my post on car parts by <strong>&lt;a href=&#8221;http://www.pat-burt.com&#8221;&gt;</strong>clicking here<strong>&lt;/a&gt; </strong></p>
<p><strong>Good Example: </strong></p>
<p>check out my <strong>&lt;a href=&#8221;http://www.pat-burt.com&#8221; title=&#8221;car parts blog&#8221;&gt;</strong>post about car parts<strong>&lt;/a&gt;</strong></p>
<p>The good example uses the title attribute effectively and has great link text. It is EASY to do this. It isn&#8217;t hard. When adding a link using WordPress&#8217;s WYSIWYG (What You See Is What You Get) editor, go through the trouble and fill in the <strong>Title</strong> form field.</p>
<h2>Use Great HTML Tags</h2>
<p>I&#8217;ve written past articles on optimizing your HTML tags for Search Engines. Rather than reiterate each article, I&#8217;ll link to each of them:</p>
<p>Part 1 of <strong>Optimizing Your HTML Tags for Search Engines</strong> discusses your <a href="http://www.pat-burt.com/search-engine-optimization-seo/optimizing-your-wordpress-blog-for-search-engines-part-1/" title="header (h1) and title tags in SEO">header (&lt;h1&gt;) and title (&lt;title&gt;) tags</a> and<br />
Part 2 discusses <a href="http://www.pat-burt.com/search-engine-optimization-seo/optimizing-your-html-tags-for-search-engines-part-2/" title="paragraph (p) and formatting tags (em strong) for SEO">paragraph (&lt;p&gt;) and formatting tags (&lt;em&gt;,&lt;strong&gt;)</a></p>
<h2>Another Way To Avoid Duplicate Content</h2>
<p>I discussed avoiding duplicate content by using the_excerpt() function in WordPress, but I also noticed I have duplicate content somewhere else: <strong>my Archives</strong>.</p>
<p>When viewing <a href="http://www.pat-burt.com/2007/" title="archives for pat burt">my archives</a>, these archive subpages (this applies to both yearly and monthly archives) contain the same excerpts as my category subpages, just arranged differently. If I want to truly stay away from Google&#8217;s algorithm that penalizes duplicate content, I should choose to keep one or the other.  We can still keep both of them, but naturally, we&#8217;d only want Search Engines to index the more optimized version. In this case, it would be the category pages as these have the category names (great keywords) in the page title and header.</p>
<p><strong>How To Prevent Archives From Being Indexed </strong></p>
<p>It&#8217;s rather easy. If we have a look at the archives pages, the links all look like the following: <strong>http://www.pat-burt.com/2007/(month)/. </strong>If we don&#8217;t want this folder indexed, we can stop Search Engine spiders from indexing any content in the folders that start with 2007. We can do this by specifying the following in our <strong>robots.txt</strong> file:</p>
<p><strong>User-agent: *<br />
Disallow: /2009<br />
Disallow: /2008<br />
Disallow: /2007<br />
Disallow: /2006</strong></p>
<p>The first line names what spiders the following rules apply to. In this case, we want this to apply to all Search Engine spiders. The other lines specify what rules to apply to which directory structure.</p>
<p>If you&#8217;re new to the <strong>robots.txt</strong> file, the robots.txt file simply instructs what a Search Engine spider should do when arriving at your website. By default, they spider all the content they can get to. The robots.txt file is located on the root of your server and it doesn&#8217;t need to be present.</p>
<p>That&#8217;s all for now, if you&#8217;re looking for more information, you can look at what other articles about <a href="http://www.pat-burt.com/category/wordpress/" title="WordPress tips">WordPress tips</a> I have.</p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fwordpress%2Fsearch-engine-optimization-for-wordpress-part-3%2F&amp;title=Search+Engine+Optimization+for+WordPress+%26%238211%3B+Part+3"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>4 Tips To Help Get Readers To Stick Around On Your WordPress Blog</title>
		<link>http://www.pat-burt.com/wordpress/4-tips-to-help-get-readers-to-stick-around-on-your-wordpress-blog/</link>
		<comments>http://www.pat-burt.com/wordpress/4-tips-to-help-get-readers-to-stick-around-on-your-wordpress-blog/#comments</comments>
		<pubDate>Sun, 02 Sep 2007 18:10:27 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/wordpress/4-tips-to-help-get-readers-to-stick-around-on-your-wordpress-blog/</guid>
		<description><![CDATA[Great content isn&#8217;t the only part of the recipe to getting visitors/readers to stick around and read your WordPress blog. Sometimes, readers need a little help to keep them reading articles and getting involved with your content and articles. When readers stick to your blog, it may help build a reader base and RSS subscribers. [...]]]></description>
			<content:encoded><![CDATA[<p>Great content isn&#8217;t the only part of the recipe to getting visitors/readers to stick around and read your WordPress blog. Sometimes, readers need a little help to keep them reading articles and getting involved with your content and articles.</p>
<p><strong>When readers stick to your blog, it may help build a reader base and RSS subscribers</strong>. This can never be a bad thing, even if, statistically, return readers are not ad clickers, it can always help with word-of-mouth and getting backlinks.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script></p>
<h2>1 &#8211; Display Your Recent Articles</h2>
<p>Whether it&#8217;s on your sidebar, or at the end of your article, this is always a great feature to have. Occasionally, a reader may get to an article you wrote and enjoy its content so much, they want to read more of your blog, but don&#8217;t quite know where to start. <strong>Give them direction</strong>.</p>
<h2>How To Display Recent Articles</h2>
<p>This is fairly easy. Once you get into your WordPress admin panel (typically <strong>www.yourdomain.com/wp-admin/</strong>), select <strong>Presentation</strong>. Now select <strong>Widgets</strong>. Using the sidebar widgets editor, you can drag and drop the <strong>Recent Articles</strong> element into your sidebar. By hitting the graphic beside the name, you can configure settings such as the title and number of posts to show.</p>
<h2>2 &#8211; Display Related Articles</h2>
<p>Like displaying a list of recent articles, a first-time reader may like your content so much, they&#8217;d love to read up on similar subjects. Give it to them, make it easier for them. Don&#8217;t make them search through your archives or have to go through the trouble of typing keywords into your search dialog.</p>
<h2>How To Display Related Articles</h2>
<p>Unfortunately, this feature was not built into WordPress. Thanks to the wonderful world of plugins, the people at <a href="http://w-a-s-a-b-i.com/" rel="nofollow" title="Related Articles Plugin">w-a-s-a-b-i.com</a> made it happen. Their website has been down for sometime, so I rezipped the required files so you can have a <a href="http://www.pat-burt.com/wp-content/uploads/2007/09/related-posts-plugin-wasabi.zip" title="Working Download for the Related Articles Plugin">Working Download for the Related Articles Plugin</a>. By default, the plugin analyzes the titles of your articles, but there are ways to configure otherwise. I included the readme file because it can explain everything a lot easier then I can.<a href="http://w-a-s-a-b-i.com/" rel="nofollow" title="Related Articles Plugin"><br />
</a></p>
<h2>3 &#8211; Link Between Your Own Posts</h2>
<p>It&#8217;s a fairly simple strategy. You shouldn&#8217;t feel guilty plugging your own content.</p>
<p>If you briefly mention <strong>Backlinks</strong>, for example, and you&#8217;ve written pages of articles about them, link to category page about Backlinks. It can only help, right? If they want to know more about the content, there&#8217;s a direct link to your own article for them to click on. It helps eliminate the risk of the reader returning to Google and typing in different keywords to find that same information, but from another website.</p>
<h2>4 &#8211; Give The User Direction At The End Of Articles</h2>
<p>After a reader goes through your well-written, long-winded article,<strong> give them direction</strong>. If not, they might end up hitting the <strong>Back Button</strong> or returning back to Google. <strong>Use this space to link to Recent Articles, Related Posts or articles you think they might find interesting.</strong> This is more important if your article extends beyond the direction given from the sidebar. You might even consider using this as a place to throw a Google Ad.</p>
<p>Good luck, hope that helps.</p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fwordpress%2F4-tips-to-help-get-readers-to-stick-around-on-your-wordpress-blog%2F&amp;title=4+Tips+To+Help+Get+Readers+To+Stick+Around+On+Your+WordPress+Blog"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/wordpress/4-tips-to-help-get-readers-to-stick-around-on-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization for WordPress &#8211; Part 2</title>
		<link>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-2/</link>
		<comments>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-2/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 16:48:17 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
				<category><![CDATA[Search Engine Optimization SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-2/</guid>
		<description><![CDATA[This is a follow-up to Part 1 of Search Engine Optimization for WordPress where I discussed optimizing your content and your directory structure. In Part 2, I will discuss how you can avoid duplicate content which is a pretty straight-forward strategy to making sure Search Engines such as Google doesn&#8217;t interpret some of your content [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow-up to Part 1 of <a href="http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-1/" title="Search Engine Optimization for WordPress">Search Engine Optimization for WordPress</a> where I discussed optimizing your content and your directory structure. In Part 2, I will discuss how you can avoid duplicate content which is a pretty straight-forward strategy to making sure Search Engines such as Google doesn&#8217;t interpret some of your content as being a duplicate of another internal page.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script></p>
<h2>How To Avoid Duplicate Content</h2>
<p>By default, your <strong>Categories</strong> and <strong>Archives</strong> pages display full articles. Unfortunately, <strong>Google</strong> may think that single article pages, where you&#8217;ve meticulously crafted your <strong>&lt;h1&gt;</strong> and &lt;<strong>title&gt;</strong> tags, are duplicates of your Categories/Archives page. This is because these pages contain identical content to each other.</p>
<p>There is a workaround. <strong>WordPress</strong> has the built-in option to post an excerpt of your article, instead of the full article. This avoids the duplicate content problem altogether. We can overcome the problem described earlier if you make your WordPress blog display excerpts in the Categories and Archives sections.</p>
<p>By default, your excerpt will be the first chunk of your article. An often overlooked feature on your <strong>Write Post</strong> page is a field to enter an <strong>Optional Excerpt</strong>. Note: It&#8217;s collapsed by default, so you&#8217;ll have to hit the (+) to expand the text field. This gives you an opportunity to create unique content as an excerpt, even a very keyword rich excerpt.</p>
<h2>How To Post Excerpts On Your Category and Archives Pages</h2>
<p>Go to your <strong>Admin</strong> section on <strong>WordPress</strong>. Under <strong>Presentation</strong>, select <strong>Theme Editor</strong>. Select the first <strong>Archives</strong> page on the right. Scroll to about halfway and look for:</p>
<p><strong>&lt;div class=&#8221;entry&#8221;&gt;<br />
&lt;?php the_content() ?&gt;<br />
&lt;/div&gt; </strong></p>
<p>This is pretty straightforward, this part is repeated for every article that&#8217;s part of the archive. Replace it with:</p>
<p><strong>&lt;div class=&#8221;entry&#8221;&gt;<br />
&lt;?php the_excerpt() ?&gt;<br />
&lt;p&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;View the Complete Article »&lt;/a&gt;&lt;/p&gt;<br />
&lt;/div&gt;</strong></p>
<p>This code repeats excerpts of the articles instead of the complete articles. This prevents some of the duplicate content that was happening with a fresh WordPress install.</p>
<p>When <strong>&lt;?php the_content() ?&gt;</strong> is replaced with <strong>&lt;?php the_excerpt() ?&gt;</strong>, it&#8217;s not intuitive where the user should click to view the rest of the article. The following line:</p>
<p><strong>&lt;p&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;View the Complete Article »&lt;/a&gt;&lt;/p&gt;</strong></p>
<p>automatically adds a link displaying &#8220;View the Complete Article »&#8221; with a link to the full article. Of course, you can change this to whatever you like, such as &#8220;Read more&#8221; or &#8220;Banana Bread&#8221;.</p>
<p>I hope this helps. If you&#8217;re interested, you can read Part 1 of this series where I discuss <a href="http://http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-1/" title="optimizing your content and directory structure for Search Engines in WordPress">optimizing your content and directory structure for Search Engines in WordPress</a>. For other articles on WordPress, see the <a href="http://www.pat-burt.com/category/wordpress/" title="WordPress category">WordPress category</a>.</p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fwordpress%2Fsearch-engine-optimization-for-wordpress-part-2%2F&amp;title=Search+Engine+Optimization+for+WordPress+%26%238211%3B+Part+2"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization for WordPress &#8211; Part 1</title>
		<link>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-1/</link>
		<comments>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-1/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 17:17:10 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
				<category><![CDATA[Search Engine Optimization SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-1/</guid>
		<description><![CDATA[It can&#8217;t go without saying, WordPress is a godsent of an open-source program. It is (in my opinion) the best option for running your own blog on your own server. There are so many options, plugins and widgets and the Search Engine Optimization features that are built in are top-notch. Now some of these options [...]]]></description>
			<content:encoded><![CDATA[<p>It can&#8217;t go without saying, WordPress is a godsent of an open-source program. It is (in my opinion) the best option for running your own blog on your own server. There are so many options, plugins and widgets and the Search Engine Optimization features that are built in are top-notch. Now some of these options are not enabled by default and might be hidden a little so you may have to dig to change some settings. This blog entry covers only optimization that applies to Search Engines.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script></p>
<h2>Optimizing your Content for Search Engines</h2>
<p><strong>Content Volume</strong>. Search Engines hunger for more content. They could not give a damn about how many pictures you put of your dog or if your website looks like a spaceship. The more content, the more resources a Search Engine can gather about your website, and chances are, the more keywords you can reach.</p>
<p><strong>Keyword Rich Content. </strong>Communicating with the language that Search Engine users use is definitely a plus. Your WordPress weblog title, your subtitle, your post headers and your posts themselves need to overflow with great keywords. These are your big sellers. For more information on properly optimizing your HTML tags (title tag and h1 tag), see Part 1 of <a href="http://www.pat-burt.com/wordpress/optimizing-your-wordpress-blog-for-search-engines-part-1/" title="Optimizing Your HTML Tags for Search Engines">Optimizing Your HTML Tags for Search Engines</a>.</p>
<p><strong>Targetted Wording. </strong>This goes with using Keyword Rich Content, but it&#8217;s slightly different. You would use the language of the average Search Engine user. To better explain this, I&#8217;ll use an example. I&#8217;m a Canadian, if you&#8217;re Canadian you&#8217;ll know that I misspelt &#8220;Optimization&#8221;, it is in fact &#8220;Optimisation&#8221;. I&#8217;m not unpatriotic, but when there are 10 times as many US residents as there are Canadian residents, you have to consider that. The same would apply to a blog about soda (or pop) or to a blog about the distances you run each day in your exercise routine.</p>
<h2>Optimizing Your Directory Structure (Permalinks)</h2>
<p>By default, your individual blog entries (permalinks) are stored in this fashion: http://www.pat-burt.com/?p=123. If we take a step back and look at this from a Search Engine&#8217;s point-of-view, why would we not use our URL resource to boost our ratings for keywords? We can. Thank you WordPress.</p>
<p>In your <strong>Admin Panel</strong>, select <strong>Options</strong> and then <strong>Permalinks</strong>. Let&#8217;s look at the options:</p>
<ul>
<li>http://www.pat-burt.com/?p=123</li>
<li>http://www.pat-burt.com/2007/04/02/sample-post/</li>
<li>http://www.pat-burt.com/archives/123/</li>
<li>Custom</li>
</ul>
<p>We already know the first one isn&#8217;t a good alternative. Let&#8217;s look at the second one. Why would a user searching for information care about what date it was posted on? You&#8217;re using a valuable resource (the URL) to display meaningless information (to your normal Google user). Next. The third option is a combination between the terrible first example and the mediocre example. Archives? 123? Not important.</p>
<p>Ahh, the Custom field, this is what we were looking for. If we wanted to use our URL&#8217;s to their best potential, we should fill them up with rich keywords. What better place to look then our keyword rich Entry names and Category names? Perfect.</p>
<p>Under Custom, specify below, I suggest that the best option is: <strong>/%category%/%postname%/</strong>.<strong> </strong>What this does is display the category followed by the post name in the URL structure. A great solution.</p>
<p>That&#8217;s all for now, you can find the rest of the articles on Search Engine Optimization for WordPress in the <a href="http://www.pat-burt.com/category/wordpress/" title="WordPress Category">WordPress category</a>.</p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fwordpress%2Fsearch-engine-optimization-for-wordpress-part-1%2F&amp;title=Search+Engine+Optimization+for+WordPress+%26%238211%3B+Part+1"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/wordpress/search-engine-optimization-for-wordpress-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

