• Resolved tornishca

    (@tornishca)


    hello people,
    I am working on a site that was installed by someone else.
    Now, i want to make some changes in my Title tab. For example: i want to change the blog title from “All about cats” in “Cats – photos, informations, funny videos”

    How i do that?

    Thank you.

Viewing 8 replies - 1 through 8 (of 8 total)
  • the title tag is normally dynamically generated from the blog title;
    which you could change in:
    admin / settings / general / blog title;

    or if you know enough php, you could edit header.php and look for <title>.......</title> and try to edit/add your blog title there manually.

    Hi,

    You can modify title tags for your blog from wordpress admin area -? settings -> general settings section.

    Thanks,

    Shane G.

    Thread Starter tornishca

    (@tornishca)

    thanks,
    but,
    my blog title is “Funny cats”, and my Title tag is “All about the cats” so it’s different.

    I wold like to change Title tag manually, but i dont know so well hot to do it. So please help me:
    In my header.php, the title looks like that. So where i need to put “Cats – photos, informations, funny videos” title?

    <title>
    <?php wp_title(”); ?>
    <?php if(wp_title(”, false)) { echo ‘ :’; } ?>
    <?php bloginfo(‘name’); ?>
    </title>

    thanks.

    ‘title tag’ is the little line that appears in the top of the browser – do you want to change this?

    or do you want to have a different tag line (description) on your blog header?
    you could change the tag line description in ‘admin / settings / general’

    or you could find the code further down in header.php – some line containing bloginfo('description');

    Thread Starter tornishca

    (@tornishca)

    i want to change “Title tag” – the little line that appears in the top of the browser.

    How to do that?

    You Also use All in one seo pack Plugin for change individual post title and description .

    Thread Starter tornishca

    (@tornishca)

    Bloggz, i use All in one seo pack Plugin, but it does not change Title tag.
    so, how i change Title tag?

    you change it in the code that you posted earlier:

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

    try and change it to:

    <title>
    <?php wp_title(''); ?>
    <?php if(wp_title('', false)) { echo ' :'; } ?>
    Cats - photos, informations, funny videos
    </title>

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘how to modify my Title tag?’ is closed to new replies.