CMB2 Meta Box Code

function cmb_meta_box(array $mitul){
$prefix = '_xx_';
$mitul[] = array(
'id' => 'second-section',
'title' => 'This is Second section',
'object_types' => array('post'),
'fields' => array(
array(
'name' => 'Enter Your Name',
'type' => 'text',
'id' => $prefix.'hkname'
)
)
);
return $mitul;
}
add_filter('cmb2_meta_boxes','cmb_meta_box');

Comments

Popular posts from this blog

WP register_post_type() with custom CMB2 meta box

Git post receive setup at server for git push to the production from local machine