feed_links_extra_show_author_feed хук-фильтрWP 6.1.0

Filters whether to display the author feed link.

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

add_filter( 'feed_links_extra_show_author_feed', 'wp_kama_feed_links_extra_show_author_filter' );

/**
 * Function for `feed_links_extra_show_author_feed` filter-hook.
 * 
 * @param bool $show Whether to display the author feed link.
 *
 * @return bool
 */
function wp_kama_feed_links_extra_show_author_filter( $show ){

	// filter...
	return $show;
}
$show(true|false)
Whether to display the author feed link.
По умолчанию: true

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

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

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

feed_links_extra()
feed_links_extra_show_author_feed
wp-includes/general-template.php 3317
$show_author_feed = apply_filters( 'feed_links_extra_show_author_feed', true );

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

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