previous_posts_link_attributes хук-фильтрWP 2.7.0

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

Использование

add_filter( 'previous_posts_link_attributes', 'wp_kama_previous_posts_link_attributes_filter' );

/**
 * Function for `previous_posts_link_attributes` filter-hook.
 * 
 * @param string $attributes Attributes for the anchor tag.
 *
 * @return string
 */
function wp_kama_previous_posts_link_attributes_filter( $attributes ){

	// filter...
	return $attributes;
}
$attributes(строка)
Attributes for the anchor tag.

Список изменений

С версии 2.7.0 Введена.

Где вызывается хук

get_previous_posts_link()
previous_posts_link_attributes
wp-includes/link-template.php 2661
$attr = apply_filters( 'previous_posts_link_attributes', '' );

Где используется хук в WordPress

wp-includes/blocks/query-pagination-previous.php 42
add_filter( 'previous_posts_link_attributes', $filter_link_attributes );
wp-includes/blocks/query-pagination-previous.php 44
remove_filter( 'previous_posts_link_attributes', $filter_link_attributes );