Created
January 25, 2019 17:56
-
-
Save flegfleg/da94112cd21fb85c1e804222587075be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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