previous_comments_link_attributes хук-фильтр . WP 2.7.0
Filters the anchor tag attributes for the previous comments page link.
Использование
add_filter( 'previous_comments_link_attributes', 'filter_function_name_3547' ); function filter_function_name_3547( $attributes ){ // filter... return $attributes; }
- $attributes(строка)
- Attributes for the anchor tag.
Список изменений
С версии 2.7.0 | Введена. |
Где вызывается хук
previous_comments_link_attributes
wp-includes/link-template.php 2971
return '<a href="' . esc_url( get_comments_pagenum_link( $prevpage ) ) . '" ' . apply_filters( 'previous_comments_link_attributes', '' ) . '>' . preg_replace( '/&([^#])(?![a-z]{1,8};)/i', '&$1', $label ) . '</a>';