• Resolved alexmwhite

    (@alexmwhite)


    I am building my third WordPress site and this is the first time I have ever run into this problem.

    My new site – http://pc50.kz/ – won’t pick up the site title I’ve given it under Settings>General>Site Title.

    I have WordPress 3.1 and am running the Custom Community 1.6.2 theme. I hesitate to dig into the header file or style.css because I have limited experience with CSS.

    If I can’t change the Site Title in Settings>General>Site Title, where do I need to go to fix it?

    (Note: I didn’t mean to cross-post)

Viewing 4 replies - 1 through 4 (of 4 total)
  • It has to be written into the header.php file of your theme. Some SEO plugins let you specify a title.

    What is the title supposed to be?

    Thread Starter alexmwhite

    (@alexmwhite)

    Dang Jonas, as soon as I installed All in One SEO Pack it worked like a charm. Thanks!

    Right now you have no title at all, so look for something like…

    ?php wp_title

    in the header.php of your theme and if it is not there you can put something like …

    <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>

    in the <head> section of that file.

    Since you have the All in One SEO Pack installed I would try putting a title in there first but if that doesn’t work, add that code and then it will all work.

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

The topic ‘Site Title: Unchangeable’ is closed to new replies.