previous_posts_link_attributes filter-hook . WP 2.7.0
Filters the anchor tag attributes for the previous posts page link.
Usage
add_filter( 'previous_posts_link_attributes', 'filter_function_name_6886' ); function filter_function_name_6886( $attributes ){ // filter... return $attributes; }
- $attributes(string)
- Attributes for the anchor tag.
Changelog
Since 2.7.0 | Introduced. |
Where the hook is called
previous_posts_link_attributes
wp-includes/link-template.php 2477
$attr = apply_filters( 'previous_posts_link_attributes', '' );