• i have my site title set as “aosora.us”
    <img src=”https://i663.photobucket.com/albums/uu354/Eudemon369/111-2.jpg”&gt;
    but on front-page it appears “ACG newsaosora.us”
    [IMG]https://i663.photobucket.com/albums/uu354/Eudemon369/222-2.jpg[/IMG]
    ACG news is one of my category, but i don’t want it to display on my front-page title, what should i do?
    i tried to deactivate some of my recent installed plug-ins, include CEO plug-in, but didn’t work
    here is the code for the header.php, if you need to see it
    <title><?php wp_title(''); if (function_exists('is_tag') and is_tag()) { ?><?php } if (is_archive()) { ?><?php } elseif (is_search()) { ?><?php echo $s; } if ( !(is_404()) and (is_search()) or (is_single()) or (is_page()) or (function_exists('is_tag') and is_tag()) or (is_archive()) ) { ?><?php _e(' | '); ?><?php } ?><?php bloginfo('name'); ?></title>

Viewing 3 replies - 1 through 3 (of 3 total)
  • Why not simply replace:

    <title><?php wp_title(''); if (function_exists('is_tag') and is_tag()) { ?><?php } if (is_archive()) { ?><?php } elseif (is_search()) { ?><?php echo $s; } if ( !(is_404()) and (is_search()) or (is_single()) or (is_page()) or (function_exists('is_tag') and is_tag()) or (is_archive()) ) { ?><?php _e(' | '); ?><?php } ?><?php bloginfo('name'); ?></title>

    With:
    <title><?php bloginfo('name'); ?></title>

    This will make your site name consistently used as the title

    You can have not to display title in style.css post your url so we can css code to change.

    Thread Starter Eudemon

    (@eudemon)

    i get it now, it’s because the WP Filter Post Category plug-in messes it up, i deactivated it now it looks fine
    i must have missed this one when i was checking plug-ins, thx anyway

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Site Title Problem’ is closed to new replies.