Recent

wherego_meta_box_post_types filter

wherego_meta_box_post_types

Filter post types on which the meta box is displayed

Type: filter
Since: 3.1.0
Source: includes/admin/class-metabox.php line 74

Parameters

TypeNameDescription
array$post_typesArray of post types

Usage

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