Skip to content

Instantly share code, notes, and snippets.

@flegfleg
Created January 25, 2019 17:56
Show Gist options
  • Save flegfleg/da94112cd21fb85c1e804222587075be to your computer and use it in GitHub Desktop.
Save flegfleg/da94112cd21fb85c1e804222587075be to your computer and use it in GitHub Desktop.
<?php
// Start with an underscore to hide fields from custom fields list
$prefix = '_cb2_velogistics_';
/**
* Initiate the metabox
*/
$cmb = new_cmb2_box( array(
'id' => '_cb2_velogistics_',
'title' => __( 'Velegistics properties', 'cmb2' ),
'object_types' => array( 'cb2-item', ), // Post type
'fields' => array (
'name' => __( 'Max load', 'cmb2' ),
'id' => $prefix . 'maxLoad',
'type' => 'text',
) )
) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment