wordpress去掉评论中的站点,及评论人链接

旱船 2018-9-6 3787

wordpress去掉评论中的站点。

//去掉评论中的站点
function alter_comment_form_fields($fields){
//$fields['author'] = ''; //removes name field
//$fields['email'] = ''; //removes email field
$fields['url'] = ''; //removes website field
return $fields;
}
add_filter('comment_form_default_fields','alter_comment_form_fields');

最新回复 (1)
全部楼主
  • 旱船 2018-9-6
    0 2
    //移除评论人名字的链接
    function disable_comment_author_links( $author_link ){
    return strip_tags( $author_link );
    }
    add_filter( 'get_comment_author_link', 'disable_comment_author_links' );


返回