get_edit_comment_link filter-hook . WP 2.3.0
Filters the comment edit link.
Usage
add_filter( 'get_edit_comment_link', 'filter_function_name_5616' ); function filter_function_name_5616( $location ){ // filter... return $location; }
- $location(string)
- The edit link.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
get_edit_comment_link
wp-includes/link-template.php 1520
return apply_filters( 'get_edit_comment_link', $location );