<?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>Seo Your Blog &#187; Blog Seo</title>
	<atom:link href="http://seoyourblog.com/category/blog-seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://seoyourblog.com</link>
	<description>Seo tips, plugins, templates, wordpress seo, blogging seo</description>
	<lastBuildDate>Mon, 23 Jan 2012 17:57:44 +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>How To Prevent Duplicate Content Issue On WordPress Blogs</title>
		<link>http://seoyourblog.com/blog-seo/prevent-duplicate-content-issue-wordpress-blogs-1558/</link>
		<comments>http://seoyourblog.com/blog-seo/prevent-duplicate-content-issue-wordpress-blogs-1558/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 07:16:34 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1558</guid>
		<description><![CDATA[WordPress is considered one of the most powerful blogging system on the net, but that doesn&#8217;t mean it do not have any drawbacks while using it. From the seo point of view it has a big drawback of duplicate content issue, unfortunately wordpress has not evolved enough so far to deal with this. When you [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/blog-seo/how-to-prevent-content-theft-from-your-wordpress-blog-752/' rel='bookmark' title='How To Prevent Content Theft From Your WordPress Blog'>How To Prevent Content Theft From Your WordPress Blog</a></li>
<li><a href='http://seoyourblog.com/seo-tips/5-truths-about-duplicate-content-you-may-want-to-know-332/' rel='bookmark' title='5 Truths About Duplicate Content In Google And Search Engines'>5 Truths About Duplicate Content In Google And Search Engines</a></li>
<li><a href='http://seoyourblog.com/seo-tips/avoiding-google-duplicate-content-for-technology-sites-693/' rel='bookmark' title='Avoiding Google Duplicate Content For Technology Sites'>Avoiding Google Duplicate Content For Technology Sites</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WordPress is considered one of the most powerful blogging system on the net, but that doesn&#8217;t mean it do not have any drawbacks while using it. From the seo point of view it has a big drawback of duplicate content issue, unfortunately wordpress has not evolved enough so far to deal with this. When you make a post using wordpress you will get the post on your home if you set it to be displayed on the homepage of course, then you can find the exact replica of the post in the particular category page, tag page and archive page as well. This brings in a serious in site duplicate content issue which sometimes search engines do not like at all. although inclusion on rel=canonical has brought down the problem to some extent, but still its not out of threat. So how to deal with this issue on wordpress? </p>
<h3>Setting Your Tags, Category and Archive Pages To Display Excerpts </h3>
<p>Except for the home page where some people prefer to display the entire content of their recent post and post page where you have no option other than to display the entire post, other parts of the blogs such as tags, archive, author and category pages can be made to display the excerpts all you have to do change this is by looking in to the specific template file and change the code </p>
<p>This</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://seoyourblog.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=1558&amp;download=download.txt">download.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p15584"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p1558code4"><pre class="language" style="font-family:monospace;">&lt;?php the_content(); ?&gt;</pre></td></tr></table></div>

<p>To This</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://seoyourblog.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=1558&amp;download=download.txt">download.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p15585"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p1558code5"><pre class="language" style="font-family:monospace;">&lt;?php the_excerpt(); ?&gt;</pre></td></tr></table></div>

<p>That&#8217;s how easy wordpress has made things for us. </p>
<h3>Using noindex and nofollow tags </h3>
<p>Before we proceed any further I want to clear your heads a bit about nofollow tag, many people think that nofollow links are of no use and search bots do not look in to it. This is a wrong assumption, search engines do crawl through nofollow links as well and index pages, but adding nofollow tag is just to instruct the Google bot not add any pagerank value or authority to the links, thus making it less valuable in terms of SEO, noindex tag on the other hand prevents indexing of specific page or category or any part of the blog or entire blog as a whole making it more powerful. </p>
<p>In order to instruct search engines only to index the contents in your home page and exact post page and not the other replicas found elsewhere in the blog use the following code in your header.php</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://seoyourblog.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=1558&amp;download=download.txt">download.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p15586"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p1558code6"><pre class="language" style="font-family:monospace;">&lt;?php if(is_home() &amp;&amp; (!$paged || $paged == 1) || is_single()) { ?&gt;
&lt;meta name=&quot;googlebot&quot; content=&quot;index,archive,follow,noodp&quot; /&gt;
&lt;meta name=&quot;robots&quot; content=&quot;all,index,follow&quot; /&gt;
&lt;meta name=&quot;msnbot&quot; content=&quot;all,index,follow&quot; /&gt;
&lt;?php } else { ?&gt;
&lt;meta name=&quot;googlebot&quot; content=&quot;noindex,noarchive,follow,noodp&quot; /&gt;
&lt;meta name=&quot;robots&quot; content=&quot;noindex,follow&quot; /&gt;
&lt;meta name=&quot;msnbot&quot; content=&quot;noindex,follow&quot; /&gt;
&lt;?php } ?&gt;</pre></td></tr></table></div>

<p>This code instructs the googlebot and msn bot to follow links present in the homepage and exact post page but do not index them if the contents are not in blog index or post page. You can replace the follow tag to nofollow if you do not want the links to be followed which is a personal preference. </p>
<p>Also there are people who like to have their tags and archive pages to be indexed as well for some specific reasons. Its totally up to you whether you want contents on the other pages not to be indexed or to be. </p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/blog-seo/how-to-prevent-content-theft-from-your-wordpress-blog-752/' rel='bookmark' title='How To Prevent Content Theft From Your WordPress Blog'>How To Prevent Content Theft From Your WordPress Blog</a></li>
<li><a href='http://seoyourblog.com/seo-tips/5-truths-about-duplicate-content-you-may-want-to-know-332/' rel='bookmark' title='5 Truths About Duplicate Content In Google And Search Engines'>5 Truths About Duplicate Content In Google And Search Engines</a></li>
<li><a href='http://seoyourblog.com/seo-tips/avoiding-google-duplicate-content-for-technology-sites-693/' rel='bookmark' title='Avoiding Google Duplicate Content For Technology Sites'>Avoiding Google Duplicate Content For Technology Sites</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/prevent-duplicate-content-issue-wordpress-blogs-1558/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Which Permalink Structures To Choose For Your WordPress Blogs?</title>
		<link>http://seoyourblog.com/blog-seo/permalink-structures-choose-wordpress-blogs-1518/</link>
		<comments>http://seoyourblog.com/blog-seo/permalink-structures-choose-wordpress-blogs-1518/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 14:45:15 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1518</guid>
		<description><![CDATA[One of the most powerful feature which wordpress offers to its users is the ability to alter your permalink structure to suit your taste, apart from offering you four predefined url structure to choose from, it even even goes one step further with offering you an option to customize it to your taste as well. [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/blogging-tips/how-to-alter-permalinks-in-wordpress-152/' rel='bookmark' title='How To Alter Permalinks In WordPress'>How To Alter Permalinks In WordPress</a></li>
<li><a href='http://seoyourblog.com/webmaster-tips/important-choose-themes-blogs-1467/' rel='bookmark' title='Why Is It Important To Choose The Right Themes For Blogs'>Why Is It Important To Choose The Right Themes For Blogs</a></li>
<li><a href='http://seoyourblog.com/seo-templates/fast-loading-wordpress-themes-1085/' rel='bookmark' title='Fast Loading WordPress Themes &#8211; How To Choose Them'>Fast Loading WordPress Themes &#8211; How To Choose Them</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://seoyourblog.com/wp-content/uploads/permalink.jpg"><img class="aligncenter size-full wp-image-1519" title="permalink" src="http://seoyourblog.com/wp-content/uploads/permalink.jpg" alt="" width="504" height="360" /></a></p>
<p>One of the most powerful feature which wordpress offers to its users is the ability to alter your permalink structure to suit your taste, apart from offering you four predefined url structure to choose from, it even even goes one step further with offering you an option to customize it to your taste as well. So which structure to choose and what will be a best bet for your blogs is the primary question.</p>
<h3>Permalinks With Dates</h3>
<p>It is sensible to have a permalink with dates in it, if you are running a site which is primarily a news site, or where the value of the contents expires after a specific point of time. It just gives an hint to your users and you as to how old the particular content is. Date segment of the permalinks has three attributes one for day <code>%day%</code> month %month% and year %year%. you might choose to use all the three or pick the ones which you think will be useful for you and put them in to your custom structures.</p>
<h3>Permalinks With Keywords</h3>
<p>Custom structure is so powerful that you can also embed a particular keyword in to all of your urls. Just for your understanding, if you have a site that basically does a review on a service or product, and you need include the word review in to all of your links then you can do so too. This will ensure your primary keyword is present in all of your urls.</p>
<h3>Permalinks With Categories</h3>
<p>All though few complain that including your category names in to your links has some server load issues and its not advisable to use it, but I have been following that structure on couple of my blogs without any problems for over a year now. But I will leave the choice up to you on following this structure. You can include category in to your url by using <code>%category%</code> attribute.</p>
<h3>Permalinks With Just Post Names</h3>
<p>Using just post names is one of the widely followed and popular structure for one main reason, it keeps your urls short which is a good practice from SEO perspective. Some people even include a post id in it, just to give your post permalinks some unique id.</p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/blogging-tips/how-to-alter-permalinks-in-wordpress-152/' rel='bookmark' title='How To Alter Permalinks In WordPress'>How To Alter Permalinks In WordPress</a></li>
<li><a href='http://seoyourblog.com/webmaster-tips/important-choose-themes-blogs-1467/' rel='bookmark' title='Why Is It Important To Choose The Right Themes For Blogs'>Why Is It Important To Choose The Right Themes For Blogs</a></li>
<li><a href='http://seoyourblog.com/seo-templates/fast-loading-wordpress-themes-1085/' rel='bookmark' title='Fast Loading WordPress Themes &#8211; How To Choose Them'>Fast Loading WordPress Themes &#8211; How To Choose Them</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/permalink-structures-choose-wordpress-blogs-1518/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Autoblog SEO &#8211; Is Autoblogging Bad For SEO?</title>
		<link>http://seoyourblog.com/blog-seo/autoblog-seo-autoblogging-bad-seo-1449/</link>
		<comments>http://seoyourblog.com/blog-seo/autoblog-seo-autoblogging-bad-seo-1449/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 16:23:35 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>
		<category><![CDATA[Auto blogging system]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1449</guid>
		<description><![CDATA[It really surprised me as many approached me for the last couple of weeks and asked me the very similar question. What is my idea about autoblogging? Is autoblogging a bad practice? How does search engines view a blog that has lots of auto generated contents? I finally decided to make a post on the [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>It really surprised me as many approached me for the last couple of weeks and asked me the very similar question. What is my idea about autoblogging? Is autoblogging a bad practice? How does search engines view a blog that has lots of auto generated contents? I finally decided to make a post on the topic. Hopefully people who have similar questions will be benefited.</p>
<h3>Duplicate Content</h3>
<p>One of the serious problems with having an auto blog system in action is the duplicate content. Duplicate content is not necessarily a bad thing SEO wise, but the problem starts when your scraped contents starts to rank high over the original content page. Frankly no webmaster or blogger what to be a victim of such issues. you should know that its not beyond possibility. Search engines values the content on a site based on nearly 200 factors and there are instances when it decides to rank the syndicated content on the top over the original one. I have heard about cases where people are forced to shut their blogs because of legal threats. In some cases the original author of the content directly approaches the web host and request them to take the site down. Auto blogs are definitely vulnerable to legal actions on the long run when you are not respecting the copyrights.</p>
<h3>Search Engine Penalty</h3>
<p>Its been really misunderstood that search engine penalizes sites for having duplicate contents, this is not really true. Search engines do easily identify sites that has similar contents but not necessarily penalizes just because it is holding a scraped content taken from somewhere else. The real reason behind why search engines might penalize a auto blog is something else.</p>
<h3>Content Spamming</h3>
<p>To be more precise the real reason for penalties on auto blogs is spamming contents. There are a lots of people who are greedy to make hundreds of dollars over night and think auto blogging can do the trick. But building a blog overnight with hundreds and thousands of over night gives your site an outright confirmation that it is spamming to search engines. When you are using a system that generates automatic contents for your blog, keep in mind that do not over do it.</p>
<h3>Use Creative Commons</h3>
<p>Its a good idea to use creative common contents from sites like wikihow. Where you are free to use their contents on your blog provided you link back to them or provide some kind of credit back to the original owner. If you want to use contents that are not under creative commons then its a good idea to approach the real owner and obtain permission.</p>
<h3>Conclusion</h3>
<p>Autoblogging is not a necessarily a bad thing when you respect the copyrights and do not spam hundreds of contents over night, keep your blog clean and use only contents that are allowed to be shared by its author.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/autoblog-seo-autoblogging-bad-seo-1449/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WordPress Tags SEO &#8211; How To Use WordPress Tags For SEO</title>
		<link>http://seoyourblog.com/blog-seo/wordpress-tags-seo-wordpress-tags-seo-1428/</link>
		<comments>http://seoyourblog.com/blog-seo/wordpress-tags-seo-wordpress-tags-seo-1428/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 21:15:23 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>
		<category><![CDATA[Using Wordpress Tags For SEO]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1428</guid>
		<description><![CDATA[Do you know that using tagging feature in wordpress properly can potentially bring more visitors to your website? WordPress tags is one of the most powerful feature that comes very handy with the platform. Unfortunately this feature is not properly utilized by webmasters and bloggers alike. In this post I am going to go through [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/seo-tips/importance-h1-h2-tags-optimize-h1-h2-tags-wordpress-1091/' rel='bookmark' title='Importance Of H1 And H2 Tags &#8211; Optimize H1 And H2 Tags In WordPress'>Importance Of H1 And H2 Tags &#8211; Optimize H1 And H2 Tags In WordPress</a></li>
<li><a href='http://seoyourblog.com/blog-seo/why-you-must-avoid-posting-under-multiple-categories-in-your-blog-219/' rel='bookmark' title='Why You Must Avoid Posting Under Multiple Categories In Your Blog'>Why You Must Avoid Posting Under Multiple Categories In Your Blog</a></li>
<li><a href='http://seoyourblog.com/blog-seo/10-seo-benefits-wordpress-wordpress-seo-1072/' rel='bookmark' title='10 SEO Benefits Of WordPress &#8211; How WordPress Can Help You With SEO'>10 SEO Benefits Of WordPress &#8211; How WordPress Can Help You With SEO</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Do you know that using tagging feature in wordpress properly can potentially bring more visitors to your website? WordPress tags is one of the most powerful feature that comes very handy with the platform. Unfortunately this feature is not properly utilized by webmasters and bloggers alike. In this post I am going to go through how you can make very effective use of the wordpress tags on your posts so that you might reap the benefits out of it.</p>
<h3>Tags Create Indexable Contents</h3>
<p>You should know that creating tags for your posts instantly creates new contents for your blog that can be indexed by search engines. So the more number of tags you create for your posts, more number of contents you create for your blog.</p>
<h3>Create Similar Tags For Multiple Posts</h3>
<p>If the contents in your blog are related to a single topic, it is a good idea to create common tags for multiple posts. Creating similar tags for many posts will mean multiple posts are linked together by common tag, which increases the increases the pagerank value of the particular tag and also increases its chances of being indexed by search engines.</p>
<h3>Use Long Phrases For Tags</h3>
<p>I often notice many blogs utilizes single words for tags, unfortunately using single words for your tags will not do you any good in bringing more traffic to your site. It is a good idea to choose a long phrase that users are likely to use when they search for information in search engines. Long phrases increases the chances of tags pages are being found through search engines.</p>
<h3>Avoid Using Too Many Tags</h3>
<p>It is a good idea to stick with one tag or at the most two tags for a post instead of using multiple number of tags, using multiple tags would mean that more duplicate contents being found on your blog.</p>
<h3>Avoid Duplicate Content By Using Excerpts</h3>
<p>It is a good idea to use only excerpts of the post in the tags pages instead of displaying the entire content, this will potentially reduce the duplicate content issues with your site. If possible you can also use custom excerpts for your tags and category pages.</p>
<h3>Conclusion</h3>
<p>Tags can be very useful to bring more hits to your site through search engines, but you should know that tags themselves are not magical and do not bring you tons of hits over night. Careful planning of your tags will ensure increased benefits for your blogs.</p>
<p>Source: <a title="using tags" href="http://www.prelovac.com/vladimir/improve-search-engine-placement-with-tags" target="_blank">Vladimir</a></p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/seo-tips/importance-h1-h2-tags-optimize-h1-h2-tags-wordpress-1091/' rel='bookmark' title='Importance Of H1 And H2 Tags &#8211; Optimize H1 And H2 Tags In WordPress'>Importance Of H1 And H2 Tags &#8211; Optimize H1 And H2 Tags In WordPress</a></li>
<li><a href='http://seoyourblog.com/blog-seo/why-you-must-avoid-posting-under-multiple-categories-in-your-blog-219/' rel='bookmark' title='Why You Must Avoid Posting Under Multiple Categories In Your Blog'>Why You Must Avoid Posting Under Multiple Categories In Your Blog</a></li>
<li><a href='http://seoyourblog.com/blog-seo/10-seo-benefits-wordpress-wordpress-seo-1072/' rel='bookmark' title='10 SEO Benefits Of WordPress &#8211; How WordPress Can Help You With SEO'>10 SEO Benefits Of WordPress &#8211; How WordPress Can Help You With SEO</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/wordpress-tags-seo-wordpress-tags-seo-1428/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Pagerank Distribution &#8211; How To Distribute Pagerank Across Your Blog</title>
		<link>http://seoyourblog.com/blog-seo/pagerank-distribution-distribute-pagerank-blog-1411/</link>
		<comments>http://seoyourblog.com/blog-seo/pagerank-distribution-distribute-pagerank-blog-1411/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 12:55:15 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>
		<category><![CDATA[Distributing Pagerank Across Your Website]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1411</guid>
		<description><![CDATA[When everybody is busy with ditching the importance of pagerank, How it  does not influence the rankings anymore, I want to let you know that its the right time to take advantage of people&#8217;s ignorance over it. It is very well not the most important factor anymore and that&#8217;s true when considering the fact over [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/seo-tips/how-pagerank-works-1041/' rel='bookmark' title='How Does Pagerank Work &#8211; Things You Need To Know About Pagerank'>How Does Pagerank Work &#8211; Things You Need To Know About Pagerank</a></li>
<li><a href='http://seoyourblog.com/seo-tips/7-tips-on-keyword-distribution-across-your-site-526/' rel='bookmark' title='7 Tips On How To Distribute Keywords Across Your Site'>7 Tips On How To Distribute Keywords Across Your Site</a></li>
<li><a href='http://seoyourblog.com/webmaster-tips/press-release-distribution-really-1026/' rel='bookmark' title='Press Release Distribution &#8211; What Are They Really?'>Press Release Distribution &#8211; What Are They Really?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When everybody is busy with ditching the importance of pagerank, How it  does not influence the rankings anymore, I want to let you know that its the right time to take advantage of people&#8217;s ignorance over it. It is very well not the most important factor anymore and that&#8217;s true when considering the fact over 200 factors influencing the rankings of your pages. But my understanding is this. Just because the value of it is diluted over years, does not mean you should not focus on it. Though over two hundred factors in Google algorithm that influences the rankings of your pages, I am very certain with the fact that it does play a significant.</p>
<p>Instead of wasting our time arguing how it does not matter at all, lets focus on how to distribute it across your blog very effectively so that your pages get very good chances of ranking  high in Google and also possibly on other search engines as well.</p>
<h3>1. Link To Your Popular Posts On Your Homepage</h3>
<p>In general when we look at a blog in common, most of times we tend to notice that homepage of the blog carries more PR value. This is not a surprise as most of us tend to build more links to our homepage. It is a good idea to place your popular post links on the homepage. You can make use of the text tool to manually add links to your important posts or you can make use of <a title="popular posts wordpress" href="http://wordpress.org/extend/plugins/wordpress-popular-posts/" target="_blank">popular posts plugin</a> from wordpress which can do the job for you. Some people even add tags in to their sidebar which is a good idea too.</p>
<p>There are themes which comes with side tabs widget built in to it. Just like the one you can notice on the sidebar of this blog, which instantly links to popular and featured posts and also tags and I really appreciate using those themes.</p>
<h3>2. Build Links To Your Sitemap Page</h3>
<p>If you are not aware of the fact that you can create a sitemap page for your blog just like the one you can find<a title="sitemap page" href="http://seoyourblog.com/sitemap/" target="_blank"> here</a>. You should go ahead and install this <a title="sitemap generator" href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/" target="_blank">plugin in </a>your blog and create one now.</p>
<p>Creating a sitemap page will be really useful to distribute the pagerank evenly across your blog. All you have to do is build more inbound links directed towards it and it takes care of the rest.</p>
<h3>3. Tag Sculpting</h3>
<p>Tag Sculpting is a similar is really similar to creating sitemap page for your blog, except that you will create a dedicated page for your tags. This method is more powerful for a single reason, all your tags are linked from real posts in your blog and this enable your tags page to accumulate a massive amount of pagerank in a single location enabling uniform distribution of pagerank across your blog.</p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/seo-tips/how-pagerank-works-1041/' rel='bookmark' title='How Does Pagerank Work &#8211; Things You Need To Know About Pagerank'>How Does Pagerank Work &#8211; Things You Need To Know About Pagerank</a></li>
<li><a href='http://seoyourblog.com/seo-tips/7-tips-on-keyword-distribution-across-your-site-526/' rel='bookmark' title='7 Tips On How To Distribute Keywords Across Your Site'>7 Tips On How To Distribute Keywords Across Your Site</a></li>
<li><a href='http://seoyourblog.com/webmaster-tips/press-release-distribution-really-1026/' rel='bookmark' title='Press Release Distribution &#8211; What Are They Really?'>Press Release Distribution &#8211; What Are They Really?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/pagerank-distribution-distribute-pagerank-blog-1411/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>8 Useful Tips To Reduce Blog Load Time</title>
		<link>http://seoyourblog.com/blog-seo/8-tips-reduce-blog-load-time-1253/</link>
		<comments>http://seoyourblog.com/blog-seo/8-tips-reduce-blog-load-time-1253/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 12:28:37 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1253</guid>
		<description><![CDATA[With Google declaring site speed as one of the factors that will be taken in account while ranking your pages, almost everyone has started to strive for better performing sites in terms of speed. But lets be true to ourselves its not only search engines that loves a speedy site or blog in fact your [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/blog-seo/6-tips-on-how-to-speed-up-your-blog-413/' rel='bookmark' title='7 Tips On How To Make Your Blog Load Faster'>7 Tips On How To Make Your Blog Load Faster</a></li>
<li><a href='http://seoyourblog.com/seo-tips/5-ways-reduce-bounce-rate-blog-1639/' rel='bookmark' title='5 Best Ways To Reduce Bounce Rate On Your Blog'>5 Best Ways To Reduce Bounce Rate On Your Blog</a></li>
<li><a href='http://seoyourblog.com/webmaster-tips/5-tips-comments-blog-1846/' rel='bookmark' title='5 Best Tips On How To Get More Comments On Your Blog'>5 Best Tips On How To Get More Comments On Your Blog</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>With Google declaring site speed as one of the factors that will be taken in account while ranking your pages, almost everyone has started to strive for better performing sites in terms of speed. But lets be true to ourselves its not only search engines that loves a speedy site or blog in fact your users love it too. So lets get to the point. How can you reduce your blog load time? here is how keep reading.</p>
<h3>1. Get A Better Webserver</h3>
<p>Not many people stress on this primary point but I do. If you want a speedy blog, then choose a better webhosting company, this blog is hosted with pacifichost and they offer <a href="http://www.pacifichost.com/342-0-3-1.html" target="_blank">Award Winning cPanel Hosting from only $4.95</a>. Also their support is one of the best in the industry, most of my support ticket were taken care of within 60 minutes. If you are having a crappy server then choosing pacifichost is something I really recommend.</p>
<h3>2. Minimize Your Plugins And Widgets Usage</h3>
<p>Excessive plugins means more codes that needs to be processed by your server. Do not hold many plugins installed on your blog that practically serves no real purpose. Also its a good idea to check what are the plugins which really causes your blog pages to load slower and try to find a faster laternative for it.</p>
<h3>3. Messy Database Can Slow Down Your Blog</h3>
<p>Try to access your PhpMyAdmin and delete the tables which you are not using and try to clear of the overhead space and optimze all the tables to keep it super clean and light. Optimizing your database will result in faster loading blog. Check the detailed tutorial on<a title="wordpress phpmyadmin" href="http://seoyourblog.com/webmaster-tips/phpmyadmin-manage-wordpress-blogs-1191/" target="_blank"> how you can make use of phpmyadmin for wordpress blog</a></p>
<h3>4. Minimalist Theme</h3>
<p>Using a minimalist theme is a good idea to reduce your blog loading time, avoid using themes which demands too many addons and plugins to function. There are a loads of professional looking themes which have a minimalist approach, settling for one might be a good idea. Also using using theme frameworks can be an excellent idea, as most the frameworks comes with plenty of builtin functions in itself eliminating the need for using many plugins.</p>
<h3>5. Image Usage</h3>
<p>There are lots of blogs which use images in uncompressed png format, using png images are fine but you need to know that these format images always tend to have a bigger file size when compared to  compressed image formats like jpg and gif. Your best bet would be opt for these compressed formats as their file size are a lot lesser which would prove to speed up your blog a bit. Also its a good idea to hiding the images from being visible in the homepage and archive sections. Display images when your user wants to view the post.</p>
<h3>6. Avoid Social Plugins</h3>
<p>You might feel good to see your posts got retweeted number of times, but you should know that when your readers really like your posts they will share it with their friends no matter what. Social plugins like twitter and facebook has really proved to increase your pageload times a lot, I mean A LOT! best option would be use an alternative without a plugin or don&#8217;t have it at all. I remember my blog taking three seconds more just because of it having a retweet button near the post. Three seconds is a lot of time.</p>
<h3>7. Paginate Your Comments</h3>
<p>One more thing which takes up a lot of time for blog pages to load are the comments. More comments you got on your posts more slower it going to load. Best way to reduce it would be paginating your comments, just display the first five to ten comments at the bottom of your posts and make the excess comments move to next comment page. Remove the gravatar support in your wordpress admin and also if possible have a small button called view comments at the bottom of your post so that only users who are interested in comments can access them.</p>
<h3>8. Reduce Traking Scripts</h3>
<p>Avoid using number of tracking scripts in your blog, just stick to a single one, if you are using Google analytics just stick to it and remove the others or if you like some other service use it and remove the rest. Too many tracking scripts are going to slow down your blog. Also avoid using stat plugins like wp-stats and wassup for example.</p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/blog-seo/6-tips-on-how-to-speed-up-your-blog-413/' rel='bookmark' title='7 Tips On How To Make Your Blog Load Faster'>7 Tips On How To Make Your Blog Load Faster</a></li>
<li><a href='http://seoyourblog.com/seo-tips/5-ways-reduce-bounce-rate-blog-1639/' rel='bookmark' title='5 Best Ways To Reduce Bounce Rate On Your Blog'>5 Best Ways To Reduce Bounce Rate On Your Blog</a></li>
<li><a href='http://seoyourblog.com/webmaster-tips/5-tips-comments-blog-1846/' rel='bookmark' title='5 Best Tips On How To Get More Comments On Your Blog'>5 Best Tips On How To Get More Comments On Your Blog</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/8-tips-reduce-blog-load-time-1253/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>10 SEO Benefits Of WordPress &#8211; How WordPress Can Help You With SEO</title>
		<link>http://seoyourblog.com/blog-seo/10-seo-benefits-wordpress-wordpress-seo-1072/</link>
		<comments>http://seoyourblog.com/blog-seo/10-seo-benefits-wordpress-wordpress-seo-1072/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 15:20:15 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>
		<category><![CDATA[Wordpress seo features]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1072</guid>
		<description><![CDATA[I know I have already made couple of big posts about how to optimize your wordpress for SEO and of course it involved usage some plugins which comes really handy to accomplish what we want. Today I am not going to give out any tutorials regarding wordpress seo. I am just going to point out [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/webmaster-tips/integrate-google-analytics-adsense-benefits-1777/' rel='bookmark' title='How To Integrate Google Analytics With Adsense And Benefits'>How To Integrate Google Analytics With Adsense And Benefits</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I know I have already made couple of big posts about how to optimize your wordpress for SEO and of course it involved usage some plugins which comes really handy to accomplish what we want. Today I am not going to give out any tutorials regarding wordpress seo. I am just going to point out what are the SEO benefits which wordpress comes with, without the usage of any plugins or addons or whatsoever.</p>
<h3><strong>1. Permalinks:</strong></h3>
<p>First thing that comes to my mind about wordpress in terms of search engine optimization is the flexibility it provides with respect to url structure. You can alter the structure of permalinks to your liking and add keywords you want to focus on for each and every post you make. You should know that search engines even look in to the url when ranking webpages in its index.</p>
<h3><strong>2. Simple But Effective Default Theme </strong></h3>
<p>WordPress now comes with a really attractive default theme. This theme is not only flexible but it also loads pretty fast and codings in this theme is very clean and search engine friendly. You should know that latest search engine from Google does take site speed in to consideration. So using default theme can help you to rank high in search results now <img src='http://seoyourblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3><strong>3. WordPress codes Are Clean </strong></h3>
<p>Stable releases of wordpress always has clean codes, although latest version of wordpress does have some issues with memory limit. As far as I know the people who are involved in coding wordpress really know what they are doing and they are pretty good at it. So how does it help in terms of SEO? well if codes are clean blog pages displayed by wordpress is also clean, also uses less server resources that means your pages loads fast and overall site speed increases. This will not only enhance user experience it also makes the job of search bots a lot easier.</p>
<h3><strong>4. Usage Of Tags </strong></h3>
<p>With wordpress you get the ability to tag your posts, it not only gives you an additional navigational option but also lets search bots to find your internal pages and posts more easily. WordPress also lets you to post your tags in your homepage which eases the process further for search engine spiders.</p>
<h3><strong>5. Categories </strong></h3>
<p>You also get the ability to categorize your posts in wordpress. Which means you can use keywords in your category names and also wordpress gives you an option to alter the url slugs of category names, so you can use multiple versions of your keywords. Which is a good thing.</p>
<h3><strong>6. Easily optimize Images </strong></h3>
<p>With insert image function you can easily upload the images and also optimize the images easily by adding alt and title tags, wordpress provides you with a feature that will let you to not only add title for your images but also you can add captions for each images. Search engines loves pics with all these information embedded in to image url and use them to index it on its image results.</p>
<h3><strong>7. Make Pages </strong></h3>
<p>You can post pages in wordpress, meaning you can make pages for important keywords you want to focus on and have it on your navigation, Makes it easy for search engines to find your pages and rank it. You can take the wordpress seo page which you can find in the navigation for this blog. Also check where I rank for the term in Google <img src='http://seoyourblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3><strong>8. Make A Static Homepage </strong></h3>
<p>You can write a detailed page with all the keywords you want to focus on in your homepage and make it static instead of displaying your recent posts in the homepage which keeps changing always. This will really help you with your rankings.</p>
<h3><strong>9. Ability To Comment On Posts And Pages For Users </strong></h3>
<p>I cannot count how many times people have found my blog posts through the comments which my readers left on the blog. Blog comments does bring you a good deal of traffic especially when your blog gets popular. Also search engines give importance to posts with more comments in it.</p>
<h3><strong>10. Pinging Option </strong></h3>
<p>You can easily ping your posts to various pinging services easily with wordpress. All you have to do is fill in the ping form with all the urls you need.</p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/webmaster-tips/integrate-google-analytics-adsense-benefits-1777/' rel='bookmark' title='How To Integrate Google Analytics With Adsense And Benefits'>How To Integrate Google Analytics With Adsense And Benefits</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/10-seo-benefits-wordpress-wordpress-seo-1072/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To SEO WordPress With SEO Ultimate Plugin For WordPress</title>
		<link>http://seoyourblog.com/blog-seo/seo-wordpress-1054/</link>
		<comments>http://seoyourblog.com/blog-seo/seo-wordpress-1054/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 16:31:12 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=1054</guid>
		<description><![CDATA[Well I remember spending couple of days to prepare my first wordpress seo tutorial and I made it as exhaustive as possible to cover many aspects of search engine optimization you can achieve with wordpress. But to be frank I am kinda lazy person I myself do not implement all the things I covered in [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/seo-plugins/seo-ultimate-plugin-for-wordpress-blogs-best-seo-plugin-722/' rel='bookmark' title='SEO Ultimate Plugin For WordPress Blogs'>SEO Ultimate Plugin For WordPress Blogs</a></li>
<li><a href='http://seoyourblog.com/seo-plugins/headspace2-best-seo-plugin-for-wordpress-blogs-456/' rel='bookmark' title='Headspace2 Best SEO Plugin For WordPress Blogs'>Headspace2 Best SEO Plugin For WordPress Blogs</a></li>
<li><a href='http://seoyourblog.com/seo-plugins/wassup-wordpress-plugin-real-time-stats-plugin-1535/' rel='bookmark' title='Wassup WordPress Plugin &#8211; Best Real Time Stats Plugin'>Wassup WordPress Plugin &#8211; Best Real Time Stats Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Well I remember spending couple of days to prepare my first <a href="http://seoyourblog.com/wordpress-seo/">wordpress seo</a> tutorial and I made it as exhaustive as possible to cover many aspects of search engine optimization you can achieve with wordpress. But to be frank I am kinda lazy person I myself do not implement all the things I covered in that tutorial. If you can do all that I have mentioned in the guide its well and good. What if you need a quick solution to seo your wordpress blog? is there a short way around? Well of course yes! That&#8217;s where this SEO Ultimate plugin comes in to play. </p>
<p>Most cases whenever people think about optimizing their wordpress blog for search engines the only plugin that comes in to their mind is all in one SEO plugin for wordpress and no wonder its the most popular SEO plugin there. On the other hand if you really need a plugin that will practically do all the things which all in one SEO plugin does with very little work then SEO ultimate plugin is something I would highly recommend. Why? you will know as we proceed through this tutorial. </p>
<p>If you want to follow through this guide then go ahead download and install <a href="http://downloads.wordpress.org/plugin/seo-ultimate.zip">SEO Ultimate plugin</a> straight way. </p>
<p>So now you have installed the plugin lets go straight ahead on how we can use this plugin to better optimize our blog for search engines. </p>
<p>You should now notice a whole new array of options available to you in the wordpress admin panel with the lable SEO. just like the one the picture below.<br />
<a href="http://seoyourblog.com/wp-content/uploads/seo-ultimate.gif"><img src="http://seoyourblog.com/wp-content/uploads/seo-ultimate.gif" alt="" title="seo ultimate" width="161" height="416" class="aligncenter size-full wp-image-1055" /></a></p>
<p>So we will be using these features available to use through this plugin and lets see how we can do that.  </p>
<p><strong>1. Canonicalizer Avoid Duplicate Content Issues: </strong></p>
<p>One of the main problem commonly faced by many bloggers is that their blog often getting penalized by search engines for hosting duplicate content and duplicate content doesn&#8217;t necessarily mean that you are copying your contents from somewhere else, they could be right within your site. For example when you add tags to your posts, your tag links redirects you to the same content as your post title links is it not? by default search engines consider them as seperate urls and index both this potentially increases the risk of duplicate content. Generating link rel = canonical tags will avoid such issues and tells search engines that they direct to the same content. This will let search engines to decide up on the best url it wants to index keeping you out of danger. To do so just <strong>choose canonicalizer and choose generate rel = canonical tags </strong><br />
<a href="http://seoyourblog.com/wp-content/uploads/canonical.gif"><img src="http://seoyourblog.com/wp-content/uploads/canonical.gif" alt="" title="canonical" width="312" height="172" class="aligncenter size-full wp-image-1056" /></a></p>
<p><strong>2. Install Analytics And Other Tracking Codes: </strong></p>
<p><a href="http://seoyourblog.com/wp-content/uploads/code-inserter.gif"><img src="http://seoyourblog.com/wp-content/uploads/code-inserter-e1280416996512.gif" alt="" title="code inserter" width="540" height="476" class="aligncenter size-full wp-image-1057" /></a><br />
Code inserter option lets you to insert the desired codes in to your blog, for example you can use it to insert the Google analytics code or if you are using any other tracking services you can use this place to insert those codes and it really does come handy and makes your job a lot more simples. </p>
<p><strong>3. Comp researcher: </strong></p>
<p><a href="http://seoyourblog.com/wp-content/uploads/comp-researcher.gif"><img src="http://seoyourblog.com/wp-content/uploads/comp-researcher-e1280417284773.gif" alt="" title="comp researcher" width="540" height="376" class="aligncenter size-full wp-image-1058" /></a><br />
This option mainly lets you to use different search parameters you can use to analyze your competition in Google really quickly and easily. As far as I know there is no other plugin in wordpress which comes with this option. It should be really helpful to get a rough picture about your competition and with whom you are sharing your search results. </p>
<p><strong>4.Deeplink Juggernaut: </strong></p>
<p>I must say this is one of my favorite tools that comes with this plugin, if you have read my <a href="http://seoyourblog.com/wordpress-seo/">wordpress seo</a> tutorial I was mentioning about the importance of internal links and how it could potentially affect your search rankings. With this tool your work to achieve best internal links is made possible. All you have to do is fill in the url and keyword you want that url to be linked to and update. Once your updates are done you should notice that whenever the term you have submitted here appears anywhere in your blog post it is automatically linked to the url you have mentioned here. Don&#8217;t you think that drastically reduces your work to edit each and every post to add the links to the keywords? also it improves the pagerank distribution across your site. So why not go ahead and fill in the urls and keywords you want to focus on? you can also control the maximum amount of links you want to appear on your posts through content link settings.<br />
<a href="http://seoyourblog.com/wp-content/uploads/deeplink-juggernaut.gif"><img src="http://seoyourblog.com/wp-content/uploads/deeplink-juggernaut-e1280417845713.gif" alt="" title="deeplink juggernaut" width="540" height="221" class="aligncenter size-full wp-image-1059" /></a></p>
<p><strong>5. File Editor: </strong></p>
<p>This option mainly helps to alter your robots.txt and .htaccess right from your admin panel. it sure does come handy rather than using your ftp to locate these files and editing it from there. This one is optional if you don&#8217;t want to use it its still fine. </p>
<p><strong>6. Internal Relevance Researcher:</strong> </p>
<p>Again this tool can come handy when you want to search in Google for certain posts of yours with the keywords. I don&#8217;t want to put this one in detail again as its not something which you need to be bothered much in this context. So lets proceed to the next option. </p>
<p><strong>7. Link Box Inserter: </strong></p>
<p>This is something which I don&#8217;t use in this blog, but still I highly encourage to use this feature. What it does? it gives out the link to the post at the end of post or pages or where ever you want it to appear. Extremely helpful when people want to share your posts and pages somewhere else.<br />
<a href="http://seoyourblog.com/wp-content/uploads/linkbox-inserter.gif"><img src="http://seoyourblog.com/wp-content/uploads/linkbox-inserter-e1280419354477.gif" alt="" title="linkbox inserter" width="540" height="333" class="aligncenter size-full wp-image-1060" /></a></p>
<p><strong>8. Meta Editor: </strong></p>
<p>This option covers the important aspect of SEO, it lets you to add meta description about your blog and also to insert meta keywords. Though meta keywords are no more used by Google you can use it to focus on other search engines. Additionally it lets you to add verification codes for Google , yahoo and bing. Which is nice in my opinion.<br />
<a href="http://seoyourblog.com/wp-content/uploads/meta-editor.gif"><img src="http://seoyourblog.com/wp-content/uploads/meta-editor-e1280419738107.gif" alt="" title="meta editor" width="540" height="426" class="aligncenter size-full wp-image-1061" /></a></p>
<p><strong>9. More Link Customizer: </strong></p>
<p>Helps you to optimize the read more links when you use more tags in your posts to avoid displaying the whole of your article in homepage. And you can optimize it to focus on the keywords you want in your more link, you can also add custom more keywords for each post using the<strong> seo settings</strong> which will be available for you under the post editor once you install this plugin.<br />
<a href="http://seoyourblog.com/wp-content/uploads/more-link.gif"><img src="http://seoyourblog.com/wp-content/uploads/more-link-e1280420116188.gif" alt="" title="more link" width="540" height="134" class="aligncenter size-full wp-image-1062" /></a><br />
<a href="http://seoyourblog.com/wp-content/uploads/more-link-2.gif"><img src="http://seoyourblog.com/wp-content/uploads/more-link-2.gif" alt="" title="more link 2" width="537" height="394" class="aligncenter size-full wp-image-1063" /></a></p>
<p><strong>10. No Index Manager: </strong></p>
<p>No index manager mainly lets you not to prevent duplicate content by not allowing certain pages of your site to get in to index like tags pages, author archives etc. </p>
<p><strong>11. sharing Facilitator: </strong></p>
<p>Lets you to share your posts to social media sites by adding add this and share this button to your posts. This is something I really love to use on my blogs as it makes the job a lot easier to share your links and also build links in social media sites. </p>
<p><strong>12. Slug Optimizer: </strong></p>
<p>This option lets you to keep your url clean by removing unwanted words in your urls such as &#8220;in&#8221; &#8220;of&#8221; &#8220;for&#8221; etc. Eliminate the need for installing another plugin to do this job. I found it really helpful on many of my blogs. </p>
<p><strong>13. Title Tag Rewriter: </strong></p>
<p>Lets you to rewrite the title tags of posts, pages, tags etc very easily and all in one single area. You don&#8217;t have to go in search of codes in to your wordpress files. Again reduces lot more work for you and saves time. </p>
<p><strong>14. SEO Settings: </strong></p>
<p>This is something which really comes handy, this option which appears just below your post editor lets you to add meta titles, meta description, meta keywords, meta robots tag and more link text for every single post you make. Something which I love the most about this plugin. Use these areas sensibly and stand out of your competition. </p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/seo-plugins/seo-ultimate-plugin-for-wordpress-blogs-best-seo-plugin-722/' rel='bookmark' title='SEO Ultimate Plugin For WordPress Blogs'>SEO Ultimate Plugin For WordPress Blogs</a></li>
<li><a href='http://seoyourblog.com/seo-plugins/headspace2-best-seo-plugin-for-wordpress-blogs-456/' rel='bookmark' title='Headspace2 Best SEO Plugin For WordPress Blogs'>Headspace2 Best SEO Plugin For WordPress Blogs</a></li>
<li><a href='http://seoyourblog.com/seo-plugins/wassup-wordpress-plugin-real-time-stats-plugin-1535/' rel='bookmark' title='Wassup WordPress Plugin &#8211; Best Real Time Stats Plugin'>Wassup WordPress Plugin &#8211; Best Real Time Stats Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/seo-wordpress-1054/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How Do I Optimize My Blog?</title>
		<link>http://seoyourblog.com/blog-seo/how-do-i-optimize-my-blog-799/</link>
		<comments>http://seoyourblog.com/blog-seo/how-do-i-optimize-my-blog-799/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 10:51:12 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>
		<category><![CDATA[how to optimize blog]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=799</guid>
		<description><![CDATA[I got a question through my mail after a long time from a blogger Sheela from India asking me, she wants to know how do I optimize my blog? Its an interesting question which I would love to answer for my own personal feel good factor hehe.. Ok coming back to the question &#8220;how do [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/blog-seo/how-to-optimize-custom-more-text-link-in-blog-for-better-rankings-209/' rel='bookmark' title='How To Optimize Custom More Text Link In Blog For Better Rankings'>How To Optimize Custom More Text Link In Blog For Better Rankings</a></li>
<li><a href='http://seoyourblog.com/blog-seo/how-to-optimize-your-images-in-your-blog-for-seo-192/' rel='bookmark' title='How To Optimize Your Images In Your blog For SEO'>How To Optimize Your Images In Your blog For SEO</a></li>
<li><a href='http://seoyourblog.com/blog-seo/how-to-optimize-your-titles-for-seo-in-wordpress-170/' rel='bookmark' title='How To Optimize Your Titles For SEO In WordPress'>How To Optimize Your Titles For SEO In WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://seoyourblog.com/wp-content/uploads/2010/01/seo-blog.png"><img src="http://seoyourblog.com/wp-content/uploads/2010/01/seo-blog.png" alt="" title="seo-blog" width="451" height="306" class="aligncenter size-full wp-image-800" /></a><br />
I got a question through my mail after a long time from a blogger Sheela from India asking me, she wants to know how do I optimize my blog? Its an interesting question which I would love to answer for my own personal feel good factor hehe.. Ok coming back to the question &#8220;how do I optimize my blog?&#8221; </p>
<p>To be frank I give more importance for on-page optimization over off-page, that doesn&#8217;t mean off-page optimization is not important. but my personal opinion is on-page optimization carries 60% of SEO over off-page, I know many seo-professionals and experts may not agree with me but its my personal opinion. Whenever I design a blog I focus more on my visitors and I design my blog based on it, I do analyze what are the age groups, their behavior patterns and other details about my visitors and decide up on my layout accordingly. </p>
<p>I make sure my pages loads faster, I use colors that are pleasing and relaxing for my users and goes easy on their eyes, I always prefer to have a white background with black font as its universally accepted and loved by many. In almost all of my blogs and also on some of my client blogs I make sure the content comes to the left corner because that&#8217;s where the user eyes tend to fall. </p>
<p>I am not a big fan of ads on blogs but I do need to monetize it in order to support my hosting costs and also I depend on my blogs for my income, I make sure I place ads on spots that don&#8217;t annoy my users, I avoid using video and image ads, I always prefer text ads as it proved to get me more clicks and also they don&#8217;t spoil your page layout much, also for some SEO reasons. I think internal linking plays a very great role in your rankings in search engines, I use SEO smart links by Vladimir prelovac, in fact I am a great fan of his works that I use almost all the plugin developed by him. You can check out more on what I do for on-page seo on my wordpress seo tutorial its a real big guide worth spending some time on for sure. </p>
<p>With regards to off-page optimization I love to comment on blogs, do-follow blogs especially, I hate RSS feed submissions but I do allow RSS for my subscribers, mostly I find people link to me naturally and I love it when they do, other than that I use seo elite software to look through links of my competitors and build links on those sites which they have links in, because search engines tend to analyze your site&#8217;s relevancy based on your links, so if you have links on pages where your competitors are then it sure does influence your rankings in a great way. Other than that I do make up contents sometimes in order to go viral and gather more links for me, I tend to submit them in social media sites like digg. </p>
<p>I do a lot of other things occasionally on my blogs, I cannot discuss everything, I try to reveal things more frequently on this blog as I update it with more interesting articles. </p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/blog-seo/how-to-optimize-custom-more-text-link-in-blog-for-better-rankings-209/' rel='bookmark' title='How To Optimize Custom More Text Link In Blog For Better Rankings'>How To Optimize Custom More Text Link In Blog For Better Rankings</a></li>
<li><a href='http://seoyourblog.com/blog-seo/how-to-optimize-your-images-in-your-blog-for-seo-192/' rel='bookmark' title='How To Optimize Your Images In Your blog For SEO'>How To Optimize Your Images In Your blog For SEO</a></li>
<li><a href='http://seoyourblog.com/blog-seo/how-to-optimize-your-titles-for-seo-in-wordpress-170/' rel='bookmark' title='How To Optimize Your Titles For SEO In WordPress'>How To Optimize Your Titles For SEO In WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/how-do-i-optimize-my-blog-799/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Speed up Your WordPress Blog With Two Simple Tricks</title>
		<link>http://seoyourblog.com/blog-seo/speed-up-your-wordpress-blog-with-two-simple-tricks-779/</link>
		<comments>http://seoyourblog.com/blog-seo/speed-up-your-wordpress-blog-with-two-simple-tricks-779/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 04:18:20 +0000</pubDate>
		<dc:creator>Chakkravarthi</dc:creator>
				<category><![CDATA[Blog Seo]]></category>
		<category><![CDATA[speed up your wordpress blog]]></category>

		<guid isPermaLink="false">http://seoyourblog.com/?p=779</guid>
		<description><![CDATA[I am going to update this tricks on the next update of wordpress SEO which is most likely to happen with in next couple of days as I review the different sections of the tutorial and make updates on them. But for now I am giving out these tricks which might help you a little. [...]
Related posts:<ol>
<li><a href='http://seoyourblog.com/webmaster-tips/wordpress-fast-1078/' rel='bookmark' title='6 Simple Tips On How To Make WordPress Faster'>6 Simple Tips On How To Make WordPress Faster</a></li>
<li><a href='http://seoyourblog.com/seo-templates/tricks-theme-2-1591/' rel='bookmark' title='Tricks Theme-2 &#8211; Simple But Powerful SEO Theme'>Tricks Theme-2 &#8211; Simple But Powerful SEO Theme</a></li>
<li><a href='http://seoyourblog.com/search-engines/site-speed-to-be-taken-in-to-consideration-for-google-rankings-39/' rel='bookmark' title='Site Speed To Be Taken In to Consideration For Google Rankings'>Site Speed To Be Taken In to Consideration For Google Rankings</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://seoyourblog.com/wp-content/uploads/2010/01/speed-up-wordpress-blog.jpg"><img src="http://seoyourblog.com/wp-content/uploads/2010/01/speed-up-wordpress-blog.jpg" alt="" title="speed-up-wordpress-blog" width="350" height="350" class="aligncenter size-full wp-image-780" /></a><br />
I am going to update this tricks on the next update of <a href="http://seoyourblog.com/wordpress-seo/">wordpress SEO </a> which is most likely to happen with in next couple of days as I review the different sections of the tutorial and make updates on them. But for now I am giving out these tricks which might help you a little. </p>
<p><strong>1. Enabling Web Server Compression: </strong><br />
Enabling web server compression will reduce the size of your pages by compressing them, this will help you a lot with faster page loads, load on the server, also search bots will find it helpful to crawl through pages with reduced file size, it increases the over all site performance and user experience. To enable this compression all you need to do is create a <strong>php.ini</strong> file in your server root and include these lines in it. </p>
<p><code>zlib.output_compression=on </code></p>
<p>if you already have php.ini just include these lines in to it at first or at the end. </p>
<p><strong>Use Wp-cache: </strong><br />
I recommend using wp-cache over wp-supercache for a simple reason, I really didn&#8217;t find much of a difference with both, although if you find noticeable difference with both I would say its worth to stick with wp-cache because supercache proved to be little buggy or problematic when you move your blog to some other location or while selling your blog or if you want to uninstall the plugin. I have noticed using wp-cache with web server compression enabled has increased the blog loading speed to a great extent which is more than enough than loading a script or plugin on your blog which can be little buggy and troublesome at times.  </p>
<p>Related posts:<ol>
<li><a href='http://seoyourblog.com/webmaster-tips/wordpress-fast-1078/' rel='bookmark' title='6 Simple Tips On How To Make WordPress Faster'>6 Simple Tips On How To Make WordPress Faster</a></li>
<li><a href='http://seoyourblog.com/seo-templates/tricks-theme-2-1591/' rel='bookmark' title='Tricks Theme-2 &#8211; Simple But Powerful SEO Theme'>Tricks Theme-2 &#8211; Simple But Powerful SEO Theme</a></li>
<li><a href='http://seoyourblog.com/search-engines/site-speed-to-be-taken-in-to-consideration-for-google-rankings-39/' rel='bookmark' title='Site Speed To Be Taken In to Consideration For Google Rankings'>Site Speed To Be Taken In to Consideration For Google Rankings</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seoyourblog.com/blog-seo/speed-up-your-wordpress-blog-with-two-simple-tricks-779/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

