Posts Tagged ‘wordPress title’

Optimize WordPress Title

Saturday, April 19th, 2008

By default, the title of every post will be in the following structure: Blog Title >> Blog Archive >> Post Title.

That structure is very bad for SEO because all major search engines crawl the titles from left to right, so you need to add the main keywords “the title” of the post at the left before the main blog title. It is will be more good to make the post title alone.

Steps to do it:

1. Download SEO Title Tag Plugine.
2. Unzip the plugin and upload it to wp-content >> plugins.
3. Go to your control panel and choose “Plugins”.
4. Activate the SEO Title Tag plugine.
5. Go to “Persentation” >> “Theme Editor”.
6. At the left, Choose “Header”.
7. Find <title> tag.
8. Replace all <title> tags and all things between <title> and </title> with this code:
<title><?php if (function_exists(’seo_title_tag’)) { seo_title_tag(); } else { bloginfo(’name’); wp_title();} ?></title>
9. Update file and check the changes.