纯代码替换All-in-One-SEO插件,实现WordPress SEO优化

2018-11-01    来源:学做网站论坛

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

熟悉Wordpress的朋友对SEO插件All in One SEO应该很熟悉,这是一个对SEO很有帮助的插件。但是这个插件如果处理noindex时不得当,会造成百度不收录的影响。而且一旦使用了这个插件一段时间后,一旦停止使用,会造成搜索引擎抓取的Meta大幅丢失,影响搜索排名。

seocj

那么有什么好的方法,既可以完美自定义关键字(keywords)和页面描述(description)呢?经过多方面的测试,完美的解决方法出炉,在这里分享给所有学习wordpress使用教程的学员!

第一步:打开主题的header.php文件,找到title标签,把下面的代码替换到你的主题中。当然,你也可以根据自己的要求作适当调整下面的代码。

<title><?php
/*
?    * Print the <title> tag based on what is being viewed.
?    */
global $page, $paged;     wp_title( '-', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " – $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' – ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
?></title>
<?php
if (is_home()){
$description = "学做网站论坛https://www.xuewangzhan.com/描述";
$keywords = "学做网站论坛https://www.xuewangzhan.com/关键词";

}
elseif (is_single()) {
if ($post->post_excerpt) {
$description     = $post->post_excerpt;
} else {
$description = substr(strip_tags($post->post_content),0,220);
}
$description2 = mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 200, "…");
$keywords = get_post_meta($post->ID, "keywords", true);
if($keywords == '') {
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {
$keywords = $keywords . $tag->name . ", ";
}
$keywords = rtrim($keywords, ', ');
}
}
elseif (is_category()) {
$description = category_description();
$keywords = single_cat_title('', false);
}
elseif (is_tag()){
$description = tag_description();
$keywords = single_tag_title('', false);
}
$description = trim(strip_tags($description));
$keywords = trim(strip_tags($keywords));
?>
<meta name="description" content=”<?php echo $description; ?>" />
<meta name="keywords" content=”<?php echo $keywords; ?>" />

第二步:进入你的wordpress后台,在编辑文章页面中,点击右上角[显示选项],选 择[摘要]。在[摘要]中输入这篇文章的页面描述(description)。标签则为关键字(keywords)。如果没有填写文章摘要,也可以自动抓 取文章前200个字作为Description。

这样一来就大功告成了,以后就不要使用wordpress插件就可以实现网站seo优化了。(相关知识:怎么做网站seo优化?)

标签: isp seo 代码 排名 搜索 搜索引擎

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:如何用htaccess实现301重定向

下一篇:纯代码实现WordPress长文章分页