wordpress移除评论人名字的链接

hanchuan1234 2018-9-21 2915

wordpress移除评论人名字的链接。

添加到functions.php文件中

//移除评论人名字的链接
function disable_comment_author_links( $author_link ){
return strip_tags( $author_link );
}
add_filter( 'get_comment_author_link', 'disable_comment_author_links' );


最新回复 (0)
全部楼主
返回