get_(adjacent)_post_excluded_terms хук-фильтрWP 4.4.0

Filters the IDs of terms excluded from adjacent post queries.

The dynamic portion of the hook name, $adjacent, refers to the type of adjacency, 'next' or 'previous'.

Possible hook names include:

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

add_filter( 'get_(adjacent)_post_excluded_terms', 'wp_kama_get_adjacent_post_excluded_terms_filter' );

/**
 * Function for `get_(adjacent)_post_excluded_terms` filter-hook.
 * 
 * @param int[]|string $excluded_terms Array of excluded term IDs. Empty string if none were provided.
 *
 * @return int[]|string
 */
function wp_kama_get_adjacent_post_excluded_terms_filter( $excluded_terms ){

	// filter...
	return $excluded_terms;
}
$excluded_terms(int[]|строка)
Array of excluded term IDs. Empty string if none were provided.

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

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

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

get_adjacent_post()
get_(adjacent)_post_excluded_terms
wp-includes/link-template.php 1864
$excluded_terms = apply_filters( "get_{$adjacent}_post_excluded_terms", $excluded_terms );

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

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