Hello, I currently use the filter to activate which extensions are needed for Meta Box AIO. With the changes of not needing the base plugin installed as well anymore, do I need to include meta-box in this array for it to load properly with the changes made to AIO?
/**
* Activates only the Meta Box extensions needed.
*/
add_filter('mb_aio_extensions', function ($extensions) {
$extensions = array('mb-blocks', 'mb-settings-page', 'mb-term-meta', 'mb-user-meta', 'meta-box-columns', 'meta-box-conditional-logic', 'meta-box-geolocation', 'meta-box-group', 'meta-box-include-exclude', 'meta-box-tabs', 'meta-box-text-limiter');
return $extensions;
});