wpjc
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Pages Posts] [Plugin: Pages Posts] The original titele of page is lostEh!
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>Forum: Plugins
In reply to: [Pages Posts] [Plugin: Pages Posts] The original titele of page is lostOnly “Mystique 2.4.2” theme shows original titele. I have tested about 20 theme from wordpress.org
Forum: Plugins
In reply to: [Pages Posts] [Plugin: Pages Posts] The original titele of page is lostI’m sorry. All my problems with “Red Evo Aphelion” theme. It is necessary to change it.
Viewing 3 replies - 1 through 3 (of 3 total)