PHP code example of nsrosenqvist / cmb2-dynamic-metaboxes

1. Go to this page and download the library: Download nsrosenqvist/cmb2-dynamic-metaboxes library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nsrosenqvist / cmb2-dynamic-metaboxes example snippets


$my_metabox = new_cmb2_box(array(
    'id'            => 'my_metabox',
    'dynamic'       => true,
));

if (get_metabox_state($post, 'my_metabox') {
    // Do this
}