Tribe__Events__Updater::migrate_wordpress_custom_field_option()

Update WordPress Custom Field Setting moved from Pro only update setting if show|hide

Contents


Source

File: src/Tribe/Updater.php

	public function migrate_wordpress_custom_field_option() {
		$show_box = tribe_get_option( 'disable_metabox_custom_fields' );
		if ( 'show' === $show_box ) {
			tribe_update_option( 'disable_metabox_custom_fields', true );
		} elseif ( 'hide' === $show_box ) {
			tribe_update_option( 'disable_metabox_custom_fields', false );
		}
	}

Top ↑

Changelog

Changelog
Version Description
4.6.23 Introduced.