Recent

tptn_exclude_post_idsfilter

tptn_exclude_post_ids

Filter exclude post IDs array for backward compatibility.

Type: filter
Since: 2.2.0
Source: includes/frontend/class-display.php line 1200

Changelog

Version Description
3.0.0 Added $args
2.2.0 Introduced.

Parameters

Type Name Description
array $exclude_post_ids Array of post IDs.
array $args Arguments array.

Usage

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