我有 Genesis Magazine专业主题,我想删除评论作者链接。
我使用了许多不同的指南:
http://wpsquare.com/remove-comment-author-website-link-wordpress/
https://www.engagewp.com/remove-wordpress-comment-author-link/
我在functions.php中添加了一些代码,但这些方法不起作用
当有人发表评论时,我仍然删除了字段链接,但现在我想删除评论作者链接。
如何解决?
例如,我想删除“ Mr Wordpress ”上的链接。
答案 0 :(得分:1)
如果您不想直接在Genesis上执行此操作,可以将此过滤器粘贴到主题functions.php文件的末尾:
function filter_get_comment_author_url( $url, $id, $commentr ) {
return "";
};
add_filter( 'get_comment_author_url', 'filter_get_comment_author_url', 10, 3)
享受!
答案 1 :(得分:0)
你必须去:
起源&gt; lib&gt; <结构>的comments.php
找到以下一行:
if ( ! empty( $url ) && 'http://' !== $url ) {$author = sprintf( '%s', esc_url( $url ), genesis_attr( 'comment-author-link' ), $author );}
用新的替换它:
if ( ! empty( $url ) && 'http://' !== $url ) {$author = sprintf($author );}