get_previous_post_excluded_terms
Filters the IDs of terms excluded from adjacent post queries.
This is one of the variants of the dynamic hook get_(adjacent)_post_excluded_terms
Usage
add_filter( 'get_previous_post_excluded_terms', 'wp_kama_get_previous_post_excluded_terms_filter' );
/**
* Function for `get_previous_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_previous_post_excluded_terms_filter( $excluded_terms ){
// filter...
return $excluded_terms;
}
- $excluded_terms(int[]|string)
- Array of excluded term IDs. Empty string if none were provided.
Changelog
| Since 4.4.0 | Introduced. |
Where the hook is called
get_previous_post_excluded_terms
wp-includes/link-template.php 1880
$excluded_terms = apply_filters( "get_{$adjacent}_post_excluded_terms", $excluded_terms );