删除所有评论上帖子的URL作者

时间:2019-09-27 作者:AdamB

我无法仅禁用作者帖子的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;
}
谢谢你的帮助。

2 个回复
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);

SO网友:AdamB

你误会了aslam shikalgar。我不想让评论的所有作者都是空白的。只有他评论的那篇文章的作者。

相关推荐

使用htaccess通过wp-Comments-post.php阻止垃圾邮件

我的WordPress网站上有很多垃圾评论。正在使用wp-comments-post.php 文件我可以从日志中看到:\"POST /wp/wp-comments-post.php HTTP/1.0\" 302 3744 \"https://example.com/wp/link/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) 我已经在我的.htaccess 文件:RewriteEngine On RewriteCond %{REQUEST_METHOD