apply_filters( 'cancel_comment_reply_link', string $cancel_comment_reply_link, string $link_url, string $link_text )
- Since
- 2.7.0
Filters the cancel comment reply link HTML.
Compatibility
- WordPress
- since 2.7.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$cancel_comment_reply_linkstring- The HTML-formatted cancel comment reply link.
$link_urlstring- Cancel comment reply link URL.
$link_textstring- Cancel comment reply link text.
Where this hook fires · 1
wp-includes/comment-template.php:2020get_cancel_comment_reply_link()
Source code
* @since 2.7.0 * * @param string $cancel_comment_reply_link The HTML-formatted cancel comment reply link. * @param string $link_url Cancel comment reply link URL. * @param string $link_text Cancel comment reply link text. */ return apply_filters( 'cancel_comment_reply_link', $cancel_comment_reply_link, $link_url, $link_text );} /** * Displays HTML content for cancel comment reply link. * * @since 2.7.0Changelog
Introduced in 2.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.