Posts: 457
Name: Randy
Location: Northern Wisconsin
|
When you install that plugin you need to remove the native Wordpress title tag. It might look like:
PHP Code:
<title> <?php if (is_home()) { echo bloginfo('name'); } elseif (is_404()) { echo '404 Not Found'; } elseif (is_category()) { echo 'Category:'; wp_title(''); } elseif (is_search()) { .....and so on.... ?> </title>
(Might look different depending on your theme, this hard coded title can be removed)
The plugin creates a title tag so that you have control over it for better SEO. Normally, WP just uses the page title.
While your there, you may also notice it is generating the keyword and description tags as well. You can remove any hard coded meta tags that are being duplicated as with the title.
Note: You won't "see" the title and other meta info the plugin is generating when inspecting your header.php source code. This is added dynamically upon page load by the plugin.
|