• Great plugin – thanks!
    Some problem:
    The original <titele> of page is lost. Shows the Site Title.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter wpjc

    (@wpjc)

    I’m sorry. All my problems with “Red Evo Aphelion” theme. It is necessary to change it.

    Thread Starter wpjc

    (@wpjc)

    Only “Mystique 2.4.2” theme shows original titele. I have tested about 20 theme from www.ads-software.com

    Thread Starter wpjc

    (@wpjc)

    Eh!
    We will need to edit the “header.php” file in WordPress template folder.

    Theme Editor in the WordPress admin, select “Header” from the list and replace:

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

    (or whatever you have in your <title> container with:

    <title>
    <?php
    if (is_home () ) { bloginfo('name'); the_title(' | ');}
    elseif ( is_category() ) { bloginfo('name'); echo " | Category: "; single_cat_title();}
    elseif (is_single() ) { bloginfo('name'); the_title(' | ');}
    elseif (is_search() ) { bloginfo('name'); echo " | Search results for "; echo wp_specialchars($s);}
    elseif (is_tag() ) { bloginfo('name'); echo " | Tag: >>>"; wp_title(' '); echo ' <<< ';}
    elseif (is_page()) { bloginfo('name'); the_title(' | ');}
    else { wp_title(); }
    ?>
    </title>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Pages Posts] The original titele of page is lost’ is closed to new replies.