get_edit_comment_link хук-фильтр . WP 2.3.0
Filters the comment edit link.
Использование
add_filter( 'get_edit_comment_link', 'filter_function_name_4313' ); function filter_function_name_4313( $location ){ // filter... return $location; }
- $location(строка)
- The edit link.
Список изменений
С версии 2.3.0 | Введена. |
Где вызывается хук
get_edit_comment_link
wp-includes/link-template.php 1520
return apply_filters( 'get_edit_comment_link', $location );