i have this anything thing in my titles » it's 2 arrows pointing to the ring <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php wp_title(); ?></title> what should i change any help would be good also using headSpace
Just insert an additional parameter for the wp_title function to change the seperator. You can find some more info about the function at the Wordpress Codex pages: wp_title
like Nyu said Change your code like this .. <?php wp_title('--'); ?> Code (markup): to get -- instead of <<
i used <title> <?php wp_title('--',true,'right'); ?> <?php bloginfo('name'); ?> </title> i got rid of the » at least but i get a - at the end of the post well at least it's better now dose it hurt me in google having a - or dose it not matter.
I am not sure this will work or not but as a suggestion could you try some thing like <?php wp_title(' ',true,'right'); ?> PHP: