wordpress去掉评论名字上的超链接

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

详情:wordpress去掉评论名字上的超链接

posted @ 2021-12-06 13:38  伟哥自留地  阅读(53)  评论(0编辑  收藏  举报
伟哥自留地