WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 1110 | * |
| 1111 | * @param string $text Optional. Text to display for cancel reply link. |
| 1112 | */ |
| 1113 | function get_cancel_comment_reply_link($text = '') { |
| 1114 | if ( empty($text) ) |
| 1115 | $text = __('Click here to cancel reply.'); |
| 1116 | |
| 1117 | $style = isset($_GET['replytocom']) ? '' : ' style="display:none;"'; |
| 1118 | $link = esc_html( remove_query_arg('replytocom') ) . '#respond'; |
| 1119 | return apply_filters('cancel_comment_reply_link', '<a rel="nofollow" id="cancel-comment-reply-link" href="' . $link . '"' . $style . '>' . $text . '</a>', $link, $text); |
| 1120 | } |
| 1121 | |
| 1122 | /** |
| 1123 | * Display HTML content for cancel comment reply link. |
| 1124 | * |
| 1125 | * @since 2.7.0 |
| 1126 | * |
| 1127 | * @param string $text Optional. Text to display for cancel reply link. |
| 1128 | */ |