Support Forum
Hi, As you know I am using meta-box plugin in theme using
//add meta box
$metaboxplugin = get_template_directory() . '/inc/meta-box/meta-box.php';
$metabox = get_template_directory() . '/inc/meta-box.php';
//$metaboxtabs = get_template_directory() . '/inc/meta-box-tabs/meta-box-tabs.php';
if(file_exists($metabox)) {
require_once $metaboxplugin;
require_once $metabox;
//require_once $metaboxtabs;
}
But including tabs from theme folder does not work properly. What I am missing plz?
Also its very needed to include meta box in theme bcoz I can't provide support to all of these custom themes I created using meta-box plugin. Updating to new version on around 20 themes taking a good amount of time for me. Thanks !