Recent

tptn_dynamic_exclude_post_ids filter

tptn_dynamic_exclude_post_ids

Filter dynamic exclude post IDs array.

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

Parameters

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

Usage

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