next_posts_link_attributes хук-фильтр . WP 2.7.0
Filters the anchor tag attributes for the next posts page link.
Использование
add_filter( 'next_posts_link_attributes', 'filter_function_name_40' ); function filter_function_name_40( $attributes ){ // filter... return $attributes; }
- $attributes(строка)
- Attributes for the anchor tag.
Список изменений
С версии 2.7.0 | Введена. |
Где вызывается хук
next_posts_link_attributes
wp-includes/link-template.php 2391
$attr = apply_filters( 'next_posts_link_attributes', '' );