Tribe__Events__Admin__Event_Meta_Box::display_wp_custom_fields_metabox()
Disable WordPress Custom Fields in Events
Source
File: src/Tribe/Admin/Event_Meta_Box.php
public function display_wp_custom_fields_metabox() {
$show_box = tribe_get_option( 'disable_metabox_custom_fields' );
if ( ! tribe_is_truthy( $show_box ) ) {
remove_post_type_support( Tribe__Events__Main::POSTTYPE, 'custom-fields' );
}
}
Changelog
| Version | Description |
|---|---|
| 4.6.23 | Introduced. |