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评论者和评论内容链接。