Tabs
It's possible to add tabs to meta.
$box = new Cuztom_Meta_Box( $id, $title, $post_type, array(
'tabs',
array(
'Tab Name' => array(
// Fields here
),
'Another Tab Name' => array(
// Fields here
)
)
));
Updated over 8 years ago