I have another question, thought I would continue with this thread rather than start a new one:
In the instructions, it says to add this code to the header file between the title tags:
<?php
if (function_exists('ghpseo_output'))
ghpseo_output('main_title');
else wp_title('', true);
?>
Here is my header file:
<title><?php bloginfo('name');
if ( is_single() )
_e('» Blog Archive');
wp_title();
?></title>
Where does the first section of code go? Does it go just between these two lines?
<title><?php bloginfo('name');
if ( is_single() )
_e('» Blog Archive');
*/INSERT HERE?/*
wp_title();
?></title>
Thank you for your help!