admin管理员组文章数量:1398829
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 badges2 Answers
Reset to default 5Check 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.
本文标签: seoRemove site name from title post
版权声明:本文标题:seo - Remove site name from title post 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744618339a2615869.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论