Recent

tptn_static_exclude_post_ids filter

tptn_static_exclude_post_ids

Filter static exclude post IDs array.

Type: filter
Since: 4.2.0
Source: includes/frontend/class-display.php line 1189

Parameters

TypeNameDescription
array$exclude_post_idsArray of post IDs.
array$argsArguments array.

Usage

add_filter( 'tptn_static_exclude_post_ids', function($exclude_post_ids, $args) {
    // ...
    return $exclude_post_ids;
} );