WordPress为评论设置使用nofollow的方法

现在很多WordPress网站都设置了评论,又想给评论脸颊都加上nofollow,今天就分享一下WordPre…

现在很多WordPress网站都设置了评论,又想给评论脸颊都加上nofollow,今天就分享一下WordPress为评论设置使用nofollow的方法。

WordPress为评论设置使用nofollow的方法 (https://www.wpmee.com/) WordPress使用教程 第1张

#comments是指向文章页面评论模块的意思,但是搜索引擎会抓取到 文章链接与文章链接#comments视为同一篇文章多个链接,对SEO不是很友好。给 WordPress 评论链接加上 nofollow 的方法就是在WordPress主题functions.php 文件中加入:

function add_nofollow_to_comments_popup_link(){

return ‘ rel=”nofollow” ‘;

}

add_filter(‘comments_popup_link_attributes’, ‘add_nofollow_to_comments_popup_link’);

类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册