<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
getolympus / olympus-dionysos-field-checkbox example snippets
return \GetOlympus\Dionysos\Field\Checkbox::build('my_checkbox_field_id', [
'title' => 'What are your preferred personas?',
'default' => ['minions', 'lapinscretins'],
'description' => 'The White House needs your feedback asap!',
'mode' => 'default',
'options' => [
'minions' => 'The Minions',
'lapinscretins' => 'The Lapins Crétins',
'marvel' => 'All Marvel Superheroes',
'franklin' => 'Franklin (everything is possible)',
'spongebob' => 'Spongebob (nothing to say... Love it!)',
],
/**
* Texts definition
* @see the `Texts definition` section below
*/
't_no_options' => 'The field does no have any options.',
]);
// Get checkbox from Database
$checkbox = get_option('my_checkbox_field_id', []);
if (!empty($checkbox)) {
echo '<p>And the nominees are:</p>';
echo '<ul>';
foreach ($checkbox as $value) {
echo '<li>'.$value.'</li>'; // Will display key item options!
}
echo '</ul>';
}