Wordpress: Remove “Blog Archive” from page title
Aug 29, 2009 Programming
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