• Hi,

    at my blog persistenceunlimited.com if you were to bookmark a post, the auto-title of the bookmark would be the title of my blog, then the subtitle, then the archives heading THEN the title of the post. (i.e. Achieve-IT! – Helping you achieve your goals – Blog Archive ? Post title)

    Is there any way to get it to reflect just the post title?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Sure, edit them in your theme’s header.php.
    Just look for the <title> and </title> tags. Here’s what I have between ’em:

    <title>
    <?php wp_title(''); ?>
    <?php if(wp_title('', false)) { echo ' &raquo; '; } ?>
    <?php bloginfo('name'); ?>
    </title>

    Thread Starter bradisaac

    (@bradisaac)

    Thank you, Thank you!! Worked like a charm!

    I was looking for something similar to this, however when I typed that code in, I got:

    Post Title >> Blog Name
    (Also: Page Title >> Blog Name)

    So how would I remove the ” >> Blog Name ” from it?

    Typing faster than I think, but try this?

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

    Thanks for the quick response,
    but I’m still getting issues, now it reads:

    Post TitleBlog Name
    (Also: Page TitleBlog Name)

    Moderator Samuel Wood (Otto)

    (@otto42)

    www.remarpro.com Admin

    Try this:
    <title><?php wp_title(''); ?></title>

    Everything seems to be in order

    Thanks for the code

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Removing Blog Title>archives> from Post title?’ is closed to new replies.