Recent

top_ten_posts_post_types filter

top_ten_posts_post_types

Filter the post_types passed to the query.

Type: filter
Since: 3.0.0
Source: includes/class-top-ten-core-query.php line 274

Parameters

TypeNameDescription
array$post_typesArray of post types to filter by.
array$argsArguments array.

Usage

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