| 内容 | Spam泛滥的时代如何控制好WordPress不被这些评论内容链接链接导致网站被K,影响到整站的SEO,这是很重要的。
 WordPress除去评论者和评论内容链接
 把如下代码加入主题模板函数functions.php文件中,修改前记得先备份functions.php文件,加在中间即可。
 function remove_comment_links() {
 global $comment;
 $url = get_comment_author_url();
 $author = get_comment_author();
 if ( empty( $url ) || 'http://' == $url )
 $return = $author;
 else
 $return = $author;
 return $return;
 }
 add_filter('get_comment_author_link', 'remove_comment_links');
 remove_filter('comment_text', 'make_clickable', 9);
 这样设置以就可以除去WordPress评论者和评论内容链接。
 |