• fallingj

    (@fallingj)


    The title of the page, when reading a single blog page, gives ‘mysite.com >> Blog Archive >> Page title’.

    My question is, how do I get rid of it? How can I get it to just say ‘mysite.com > Page title’?

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • cavie

    (@cavie)

    In the header.php file, on the fifth line (in between the title tags) remove <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?>. That should do it.

    Kafkaesqui

    (@kafkaesqui)

    Go into the directory for the default theme (wp-contents/themes/default/), locate the header.php file, and edit this line in it:

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

    to:

    <title><?php bloginfo('name'); ?><?php wp_title(); ?></title>

    Thread Starter fallingj

    (@fallingj)

    I appreciate those answers a lot – I’ve only been friends with WordPress for about 24 hours.

    Thank-you.

    Kafkaesqui

    (@kafkaesqui)

    Then welcome aboard!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing ‘Blog Archive’ in title’ is closed to new replies.