cancel_comment_reply_link

过滤钩子
apply_filters( 'cancel_comment_reply_link', $formatted_link, $link, $text )
参数
  • (string) $formatted_link The HTML-formatted cancel comment reply link.
    Required:
  • (string) $link Cancel comment reply link URL.
    Required:
  • (string) $text Cancel comment reply link text.
    Required:
定义位置
相关勾子
comment_reply_linkcomment_reply_link_argsget_comment_linkwp_comment_replyedit_comment_link
相关方法
cancel_comment_reply_linkget_cancel_comment_reply_linkget_comment_reply_linkcomment_reply_linknext_comments_linkrender_block_core_comment_reply_link
引入
2.7.0
弃用
-

cancel_comment_reply_link: 这是WordPress的一个过滤钩子,允许开发者修改评论表单中”取消回复”链接的HTML输出。cancel_comment_reply_link钩子将默认的HTML输出作为一个参数,钩子函数可以返回一个修改后的HTML字符串来代替。这对于改变”取消回复”链接的外观或行为很有用。

过滤取消评论回复链接的HTML。

return apply_filters( 'cancel_comment_reply_link', $formatted_link, $link, $text );

常见问题

FAQs
查看更多 >