wherego_show_meta_box
Filters whether to show the WFP meta box.
Type: filter
Since: 3.1.0
Source: includes/admin/class-metabox.php line 56
Parameters
| Type | Name | Description |
|---|---|---|
bool | $show_meta_box | Whether the WFP meta box should be shown. Default true. |
Usage
add_filter( 'wherego_show_meta_box', function($show_meta_box) {
// ...
return $show_meta_box;
} );