2

SEO:wordpress相同内容网页优化

 3 years ago
source link: https://blogread.cn/it/article/1170?f=hot1
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

SEO:wordpress相同内容网页优化

浏览:2486次  出处信息

在优化(seowordpress的过程中,博客们常常为了增加内容的关联度,吸引访客的深度点击,但是导致了内容的重复,不利于爬虫的抓取,甚者还会被搜索引擎惩罚。下面的一段代码可以对wordpress相同内容网页优化

年初,在Google中文管理员博客就发布了解决的办法,搜索引擎通过对这个标签标识唯一内容.,即使用<link rel=”canonical” href=”" />标签属性。

在wordpress中,解决重复内容的方法很简单,把下面这段代码加到你的主题的 function.php文件即可:

以下是代码片段:
//Canonical links for comments
function canonical_for_comments() {
global $cpage, $post;
 if ( $cpage > 1 ) :
echo "n";
echo "<link rel=’canonical’ href=’";
echo get_permalink( $post->ID );
echo "’ />n";
endif; }
add_action( ’wp_head’, ’canonical_for_comments’ );

觉得文章有用?立即:

和朋友一起 共学习 共进步!

建议继续学习:

QQ技术交流群:445447336,欢迎加入!
扫一扫订阅我的微信号:IT技术博客大学习

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK