- This topic has 5 replies, 3 voices, and was last updated 12 years, 10 months ago by
StartupWP.
- AuthorPosts
- December 30, 2012 at 11:24 AM #359
StartupWP
KeymasterAre you perhaps using an SEO plugin?
Either way, try deactivating all plugins anyways to see if there’s a conflict.
If you can, please share the link to your site.
December 31, 2012 at 12:59 AM #371skoosha
ParticipantIndeed it is. Plugin i use is All in one SEO pack. When disabled, title shows like it’s supposed to!
I wonder what could be the cause.
You’ve been very kind, thank you very much!
December 31, 2012 at 11:42 AM #375StartupWP
KeymasterAll in One SEO Pack is a great plugin, we even recommend it.
But, the themes already display SEO-friendly titles, no different than how the plugin would. So, in the plugin settings, simply disable title rewriting.
Or, you might try the other highly popular SEO plugin:
May 3, 2013 at 6:07 AM #736gopi
Participantcheck your function.php file with following code function twentytwelve_wp_title( $title, $sep ) {
global $paged, $page;
if ( is_feed() )
return $title;
// Add the site name.
$title .= get_bloginfo( ‘name’ );
// Add the site description for the home/front page.
$site_description = get_bloginfo( ‘description’, ‘display’ );
if ( $site_description && ( is_home() || is_front_page() ) )
$title = “$title $sep $site_description”;
// Add a page number if necessary.
if ( $paged >= 2 || $page >= 2 )
$title = “$title $sep ” . sprintf( __( ‘Page %s’, ‘twentytwelve’ ), max( $paged, $page ) );
return $title;
}
remove this lines from your function file… Problem fixed
May 3, 2013 at 10:51 AM #738StartupWP
KeymasterThat’s the Twenty Twelve theme and likely doesn’t match Startup/StartupPro exactly.
- AuthorPosts
- You must be logged in to reply to this topic.
