crp_meta_box_post_types
Filter post types on which the meta box is displayed
Type: filter
Since: 2.2.0
Source: includes/admin/class-metabox.php line 80
Parameters
| Type | Name | Description |
|---|---|---|
array | $post_types | Array of post types. |
\WP_Post | $post | Post object. |
Usage
add_filter( 'crp_meta_box_post_types', function($post_types, $post) {
// ...
return $post_types;
} );