Wordpress: Remove “Blog Archive” from page title

To remove Blog Archive from blog post title, in administrative area of your blog use Theme Editor, edit header.php.

Replace this code:

bloginfo('name'); ?> <?php if ( is_single() ) { ?> <?php } ?> <?php wp_title(); ?></title>


with:

<title><?php wp_title(); ?><?php if ( !is_home() ) { ?> - <?php } ?><?php bloginfo('name'); ?></title>

Click Update file and you should get better titles on your blog.

No related posts.

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>