get_comments_pagenum_link хук-фильтр . WP 2.7.0
Filters the comments page number link for the current request.
Использование
add_filter( 'get_comments_pagenum_link', 'filter_function_name_1678' ); function filter_function_name_1678( $result ){ // filter... return $result; }
- $result(строка)
- The comments page number link.
Список изменений
С версии 2.7.0 | Введена. |
Где вызывается хук
get_comments_pagenum_link
wp-includes/link-template.php 2872
return apply_filters( 'get_comments_pagenum_link', $result );