comment_reply_link

过滤钩子
apply_filters( 'comment_reply_link', $args['before'] . $link . $args['after'], $args, $comment, $post )
参数
  • (string) $link The HTML markup for the comment reply link.
    Required:
  • (array) $args An array of arguments overriding the defaults.
    Required:
  • (WP_Comment) $comment The object of the comment being replied.
    Required:
  • (WP_Post) $post The WP_Post object.
    Required:
定义位置
相关勾子
comment_reply_link_argscancel_comment_reply_linkcomment_linkwp_comment_replyget_comment_link
相关方法
comment_reply_linkget_comment_reply_linkcancel_comment_reply_linkcomments_rss_linkcomment_linkpost_reply_link
引入
2.7.0
弃用
-

comment_reply_link。这个过滤器允许你修改出现在评论旁边的回复链接的HTML。

过滤评论回复链接。

return apply_filters( 'comment_reply_link', $args['before'] . $link . $args['after'], $args, $comment, $post );

常见问题

FAQs
查看更多 >