Recent

bsearch_custom_tables_indexable_post_types filter Pro only

bsearch_custom_tables_indexable_post_types

Filter indexable post types for the custom tables index.

Type: filter
Since: 4.2.4
Source: includes/custom-tables/class-table-manager.php line 218

Parameters

TypeNameDescription
string[]$post_typesArray of post types.
int$blog_idBlog ID.

Usage

add_filter( 'bsearch_custom_tables_indexable_post_types', function($post_types, $blog_id) {
    // ...
    return $post_types;
} );