next_comments_link_attributes
Filters the anchor tag attributes for the next comments page link.
Usage
add_filter( 'next_comments_link_attributes', 'wp_kama_next_comments_link_attributes_filter' ); /** * Function for `next_comments_link_attributes` filter-hook. * * @param string $attributes Attributes for the anchor tag. * * @return string */ function wp_kama_next_comments_link_attributes_filter( $attributes ){ // filter... return $attributes; }
- $attributes(string)
- Attributes for the anchor tag.
Changelog
Since 2.7.0 | Introduced. |
Where the hook is called
next_comments_link_attributes
wp-includes/link-template.php 3133
$attr = apply_filters( 'next_comments_link_attributes', '' );
Where the hook is used in WordPress
wp-includes/blocks/comments-pagination-next.php 32
add_filter( 'next_comments_link_attributes', $filter_link_attributes );