删除评论作者 link wordpress
Remove comment author link wordpress
我有 Genesis Magazine Pro 主题,我想删除评论作者 link。
我使用了很多不同的指南:
http://wpsquare.com/remove-comment-author-website-link-wordpress/
https://www.engagewp.com/remove-wordpress-comment-author-link/
我在functions.php中添加了一些代码,但是这些方法不起作用
当有人 post 发表评论时,我仍然删除字段 link,但现在我想删除 评论作者 link .
如何解决?
例如,我想删除“Mr Wordpress”上的 link。
谢谢
你必须去:
创世纪 > 库 > 结构 > 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 );}
如果您不想直接在 Genesis 上执行此操作,您可以将此过滤器粘贴到主题 functions.php 文件的末尾:
function filter_get_comment_author_url( $url, $id, $comment ) {
return "";
}
add_filter( 'get_comment_author_url', 'filter_get_comment_author_url', 10, 3);
尽情享受吧!
我有 Genesis Magazine Pro 主题,我想删除评论作者 link。
我使用了很多不同的指南:
http://wpsquare.com/remove-comment-author-website-link-wordpress/
https://www.engagewp.com/remove-wordpress-comment-author-link/
我在functions.php中添加了一些代码,但是这些方法不起作用
当有人 post 发表评论时,我仍然删除字段 link,但现在我想删除 评论作者 link .
如何解决?
例如,我想删除“Mr Wordpress”上的 link。
你必须去:
创世纪 > 库 > 结构 > 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 );}
如果您不想直接在 Genesis 上执行此操作,您可以将此过滤器粘贴到主题 functions.php 文件的末尾:
function filter_get_comment_author_url( $url, $id, $comment ) {
return "";
}
add_filter( 'get_comment_author_url', 'filter_get_comment_author_url', 10, 3);
尽情享受吧!