Support » Fixing WordPress » Title of post title of blog appearing all the time

  • Hi, this may be a simple question but when I make a post the post title shows at the very top of the screen followed by a dash then the blog title. I am trying to stop the blog title from showing so that just the post title shows does anybody know how to do this please.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Do you mean in the title?

    The code for that is usually found in the header.php file in between the <title> </title> tags.

    Change the “title” in your theme’s header.php file.

    It probably looks like this (only a few lines from the top usually): <title><?php wp_title('|', true, 'right'); ?> <?php bloginfo('name'); ?> </title>

    And you want it to look more like <title><?php bloginfo('name'); ?> </title> I believe.

    This will likely also remove the static pages’ titles – is this what you want?

    Thread Starter sixpackdave

    (@sixpackdave)

    Brilliant, thank you for both responses it is much appreciated, thank you

    Thread Starter sixpackdave

    (@sixpackdave)

    Sorry I tried the code above christogeretz but unfortunately the post title shows fine but again there is a seperator followed by the blog title. If you would like to take a look it is http://www.sixpackquest.net

    Thread Starter sixpackdave

    (@sixpackdave)

    Just for info this is the title tag
    <title><?php wp_title(”); ?><?php if(wp_title(”, false)) { echo ‘ – ‘; } ?><?php bloginfo(‘name’); ?></title>

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Title of post title of blog appearing all the time’ is closed to new replies.