wordpress meta tag titles

Perhaps the most important onpage element for your website that includes your wordpress blog is your page title. Each page title must be unique otherwise the search engines think every page is the same if your title is the same.

The code below ensures that your meta tag titles are drawn either from the name of your blog, the category title or the post title. It’s a little piece of php coding that you should enter into your header.php file - either simply edit and save the file or ftp it to your computer, edit then ftp back to your server.

Find the <title> tag and replace it with the following:

<title><?php if ( is_single() ) {
        single_post_title('’, true);
    }

elseif ( is_category() )

{
echo single_cat_title();
}
else {
        bloginfo(’title’);
    }
    ?></title>
This ensures you have unique meta tag titles on each of your pages.

Your comments on wordpress meta tag titles



FREE! SEO Tutorials !
($97 value)

First Name
Your Email



SEO Videos seo tutorial videos
SEO tutorials



SEO Categories


Archives