previous_comments_link_attributes filter-hookWP 2.7.0

Filters the anchor tag attributes for the previous comments page link.

Usage

add_filter( 'previous_comments_link_attributes', 'wp_kama_previous_comments_link_attributes_filter' );

/**
 * Function for `previous_comments_link_attributes` filter-hook.
 * 
 * @param string $attributes Attributes for the anchor tag.
 *
 * @return string
 */
function wp_kama_previous_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

get_previous_comments_link()
previous_comments_link_attributes
wp-includes/link-template.php 3194
$attr = apply_filters( 'previous_comments_link_attributes', '' );

Where the hook is used in WordPress

wp-includes/blocks/comments-pagination-previous.php 28
add_filter( 'previous_comments_link_attributes', $filter_link_attributes );
wp-includes/blocks/comments-pagination-previous.php 32
remove_filter( 'previous_comments_link_attributes', $filter_link_attributes );