PHP code example of manzoorwanijk / cmb2-select-plus
1. Go to this page and download the library: Download manzoorwanijk/cmb2-select-plus 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/ */
// field args
$args = array(
'field_args' => array(
'id' => 'some_id_here',
'type' => 'select_plus',
'options' => array(
'standard' => 'Option One',
'custom' => 'Option Two',
'none' => 'Option Three',
),
) );
// create field
$field = new CMB2_Field( $args );
// pass the field to custom class
$types = new Select_Plus_CMB2_Types( $field );
// render the field with new id and name
echo $types->select_plus( array(
'id' => 'new_id_0_here',
'name' => 'smart[param][value]',
) );
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.