Recent

crp_posts_post_types filter

crp_posts_post_types

Filter the post_types passed to the query.

Type: filter
Since: 3.0.0
Source: includes/class-crp-core-query.php line 325

Parameters

TypeNameDescription
array$post_typesArray of post types to filter by.
\WP_Post$source_postSource Post instance.
array$argsArguments array.

Usage

add_filter( 'crp_posts_post_types', function($post_types, $source_post, $args) {
    // ...
    return $post_types;
} );