• I am configuring my WP site, but for some reason when I goto the site in a browser, the title bar just lists the URL of the page and not the title set in WP>>Setting>>General>>Title

    my site is https://www.derekswitzer.net
    the title in the title bar SHOULD be Derek Switzer Web Design…

    I have not altered any php files, YET.
    I’m using the iTheme WP theme.
    Tested it on FF 3+, IE 8, Chrome.. all the same…

    I’m guessing it’s prob. something simple, but any advice/help would be appreciated! Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter derek642

    (@derek642)

    Ok, well I did find another person wanting to CHANGE the title, and this seemed to work for me:

    <!-- <title><?php if(is_home()) { echo bloginfo('name'); } else { wp_title(''); } ?></title> -->
    <title><?php if(is_home()) { echo bloginfo(‘name’); echo ‘ | ‘; echo bloginfo(‘description’); } else { echo wp_title(‘ | ‘, false, right); echo bloginfo(‘name’); } ?></title>

    I just commented out the <title> code that was there and pasted in what the other person got to work.. and it seems to have worked for me…

    Hope this helps someone else with a similar problem! ??

Viewing 1 replies (of 1 total)
  • The topic ‘Browser Page doesn't match General>>Title’ is closed to new replies.