Meta Boxes
function add_custom_meta_boxes() {
if( ! class_exists( 'Alchemy_Options\Includes\Meta_Boxes' ) || wp_doing_ajax() ) {
return;
}
$meta_boxes = array(
array(
'id' => 'meta_box',
'title' => 'Meta box title',
'post-types' => array( 'page' ),
'meta' => array(
'options' => array(),
),
),
);
new Alchemy_Options\Includes\Meta_Boxes( $meta_boxes );
}
add_action( 'init', 'add_custom_meta_boxes' );Params
Last updated