newone1
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Some text after title in contentthanks for your reply dear – but I just want to add some conditional tag, that to be applied whether that post shows in single, post pages or category pages. I don’t know how create a child theme. Is there any another easy way to do it.?
thanks
Forum: Themes and Templates
In reply to: Some text after title in contentCan you please guide step by step detail of doing this?
Forum: Fixing WordPress
In reply to: Tag countDone
Forum: Fixing WordPress
In reply to: Tag countIt worked! thanks a tons
Forum: Fixing WordPress
In reply to: Tag countThanks for you quick reply but I have added this line into header.php but still pages have same meta title.. below is the php I have added, Pl correct me where I am wrong!
<?php $blog_title = get_bloginfo('name'); if (is_home()) { $blog_title = get_bloginfo('name') . " - " . get_bloginfo('description'); } if (is_single()) { $blog_title = get_the_title() . " " . get_bloginfo('name'); } if (is_category()) { $blog_title = single_cat_title("",false); } if (is_page()) { $blog_title = the_title(); // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ); } ?> <title><?php echo $blog_title; ?></title>
Thanks in advance
Forum: Fixing WordPress
In reply to: Tag countI had one more query, Pl help me on this too!
I am trying to make meta title Perfect..
So added below php into header.php
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. Also? Don’t type in all caps. ]
<?php $blog_title = get_bloginfo('name'); if (is_home()) { $blog_title = get_bloginfo('name') . " - " . get_bloginfo('description'); } if (is_single()) { $blog_title = get_the_title() . " " . get_bloginfo('name'); } if (is_category()) { $blog_title = single_cat_title("",false); } if (is_page()) { $blog_title = the_title(); } ?> <title><?php echo $blog_title; ?></title>
But now problem is that.. when someone opens my home page or any category page, and they move to next page like page-2, 3, or 4 etc , my meta title shows same ‘Blog name’ for every page ..
I WANT IT SHOULD BE LIKE :-
BLOG NAME – PAGE NO eg PAGE-1, 2 ,3 OR WHATSOEVER PAGE IS ACTIVE..
Theme is twenty ten
thanks in advance..Forum: Fixing WordPress
In reply to: Tag countwow… That Worked perfectly.. Thanks a lot.. You are genius!!!!!!!1