Hey everyone, I am back. This post is going to be about Wordpress SEO. It’s a checklist of the steps you should take to ensure that your wordpress blog is fully optimized. I hope you like the post and find it helpful.
By Default, Wordpress uses very ugly permalinks like www.yoursite.com/?p80 which are not seo friendly. But you can easily change your permalink structure. Simply go to Settings->Permalinks, Select Custom Structure and type in /%postname% in the text field. This will make the default url of a post www.yoursite.con/your-post-name which is search engine friendly.
Note:
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' | '; } ?><?php bloginfo('name'); if(is_home()) { echo ' - '; bloginfo('description'); } ?></title>
What this does is that on the home page, it shows Your Blog Name - Your Blog Tagline, and on post pages it shows Post Title | Blog Name. To use this piece of code, simply go to Theme Editor -> Header.php and replace the default title tag code with this one.
<?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<meta name="description" content="<?php the_excerpt_rss(); ?>" />
<?php endwhile; endif; elseif(is_home()) : ?>
<meta name="description" content="<?php bloginfo('description'); ?>" />
<?php endif; ?>
What this does, is that on singe post pages, it uses an excerpt of your post and on your home page, it uses your blog tag line as the description.
Duplicate Content could affect your search engine rankings, and in a wordpress blog, there are often 4 to 5 places where a post appears. This could harm your blog alot. To avoid duplicate content, here are some steps you should take

Use the Xml Sitemaps plugin to generate a sitemap. The plugins default settings are fine. Simply upload and activate the plugin and you’re fine. But one other thing I do is to submit the sitemap to Google in Google Webmaster Central.
Okay, we have heard of Google’s latest statement on Nofollow Sculpting, but even then, I think you should nofollow certain links, such as links to register and login pages, links in comments ( unless you are generous and are ready to combat spam ) and links to your categories and tag pages if you’ve decided to keep them from being indexed. You can use Robot’s Meta for this too, here are the settings I used:
It is very important to maintain a good linking structure within your blog. It helps keep visitors on your blog and helps in improving search engine rankings. Here are some steps you can take to improve your internal linking structure:
http://api.moreover.com/RPC2 http://bblog.com/ping.php http://blogsearch.google.com/ping/RPC2 http://ping.weblogalot.com/rpc.php http://ping.feedburner.com http://ping.syndic8.com/xmlrpc.php http://ping.bloggers.jp/rpc/ http://rpc.pingomatic.com/ http://rpc.weblogs.com/RPC2 http://rpc.technorati.com/rpc/ping http://topicexchange.com/RPC2 http://www.blogpeople.net/servlet/weblogUpdates http://xping.pubsub.com/ping
That’s about it. I hope you found this post useful. Please help share this post by bookmarking it on your favorite social bookmarking sites. Also, if you liked this post, please Subscribe to my RSS Feed.
This is the Ultimate Guide to On Page Search Engine Optimization. Perform each of these steps listed here, and you can be sure that your page will be seo [...] Continue Reading…
What is the robots meta tag?
Robots meta tag is a meta tag used to instruct robots on how to deal with a certain page in terms of indexing, following [...] Continue Reading…
Whats so special about .edu links?
As you all know or might have heard, Google and other search engines give .edu links more weight, as .edu sites belong to educational [...] Continue Reading…
What is the Meta Description Tag?
The meta description tag is a snippet of html code inserted in the head section of a page, used to briefly describe the content [...] Continue Reading…
Hey everyone. Welcome (back) to my blog. As many of you might know, blog commenting is a great way to get backlinks, and a little bit of traffic. In [...] Continue Reading…
Hey everyone.Welcome to my Blog. This is my first post. It is going to be about Search Engine Optimization and Title Tags.
What are Title Tags?
The Title Tag is an [...] Continue Reading…