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 |
---|---|
1134 | * |
1135 | * @param string $text Optional. Text to display for cancel reply link. |
1136 | */ |
1137 | function get_cancel_comment_reply_link($text = '') { |
1138 | if ( empty($text) ) |
1139 | $text = __('Click here to cancel reply.'); |
1140 |
|
1141 | $style = isset($_GET['replytocom']) ? '' : ' style="display:none;"'; |
1142 | $link = esc_html( remove_query_arg('replytocom') ) . '#respond'; |
1143 | return apply_filters('cancel_comment_reply_link', '<a rel="nofollow" id="cancel-comment-reply-link" href="' . $link . '"' . $style . '>' . $text . '</a>', $link, $text); |
1144 | } |
1145 |
|
1146 | /** |
1147 | * Display HTML content for cancel comment reply link. |
1148 | * |
1149 | * @since 2.7.0 |
1150 | * |
1151 | * @param string $text Optional. Text to display for cancel reply link. |
1152 | */ |