WordPress除去评论者和评论内容链接

原理,直接过滤掉评论中a标签的href,链接就没有任何意义了…
  把如下代码加入主题模板函数functions.php文件中,修改前记得先备份functions.php文件,加在中间即可。

<code>
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);
</code>

0 thoughts on “WordPress除去评论者和评论内容链接
添加一条新回复 回到顶部

亲爱的,主人已经关闭了这篇文章的评论 。