WordPress SEO
August 30th, 2010 — adminWe should take care the following points on wordpress seo:
1. meta title:
We shoud let wordpress shows different titles for homepage, page, post, categories, very simple, replace the original title related code to
<title><?php wp_title(’«’, true, ‘right’); ?> <?php bloginfo(’name’); ?></title>
2. page title
Save as meta title, we can use the following code:
<h1><a href=”http://www.glassesexperts.com/”><?php if ( is_single() || is_page() || is_category() || is_tag() ) { wp_title(”); } else { bloginfo(’name’); } ?></a></h1> Read the rest of this entry »