我无法仅禁用作者帖子的URL。下面是一个示例:My website
正如你所看到的,绿色链接是我的(这篇文章的作者)。我只想删除那个链接,而不是其他评论链接。
我该怎么做?我尝试过在函数中修改这段代码。php,但它没有做到我想要的(它删除了所有人的URL,而不仅仅是我的):
add_filter( \'get_comment_author_link\', \'rv_remove_comment_author_link\', 10, 3 );
function rv_remove_comment_author_link( $url, $author, $comment_ID ) {
return $author;
}
谢谢你的帮助。
SO网友:aslam shikalgar
Wordpress具有“get\\u comment\\u author\\u url”功能来检索当前评论作者的url。
您可以使用以下命令将其设置为空白
function remove_author_url( $url, $id, $commentr ) {
return "";
}
add_filter( \'get_comment_author_url\', \'remove_author_url\', 10, 3);