最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

seo - Remove site name from title post

programmeradmin4浏览0评论

I want to remove the site-name from title post and used All in One SEO and this is the configuration

but in Google search the site name display in all title post ( as this )

How can I remove sitename from title post?

I want to remove the site-name from title post and used All in One SEO and this is the configuration

but in Google search the site name display in all title post ( as this )

How can I remove sitename from title post?

Share Improve this question edited Jun 29, 2013 at 2:59 brasofilo 22.1k8 gold badges70 silver badges264 bronze badges asked Jun 28, 2013 at 22:13 user2075379user2075379 92 silver badges7 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 5

Check your theme (header.php). If it uses something like this :

<title><?php wp_title( '|', true, 'right' ); ?></title>

You can use this filter :

add_filter( 'wp_title', 'wpse104667_wp_title' );
function wpse104667_wp_title( $title ) {

    global $post;
    if(
       is_singular() 
       && !is_front_page() 
       && !is_home() 
       && !is_404() 
       && !is_tag()
     )
    $new_title = get_the_title($post->ID) ;
    return $new_title;
}

EDIT: add conditional tags to avoid bad conflicts

If this problem is not caused by your theme, then you are doing this right.

Now when you set %post_titile% go to any post and check source code. If you get what you want under titile tag, then you are good to go. All you have to do now is to wait for google bot to visit your site and collect new informations from your posts.

发布评论

评论列表(0)

  1. 暂无评论