Last updated 2 years ago
Was this helpful?
This field type renders multiple checkboxes.
Parameters are inherited from the field type, but multiple is always set to true.
multiple
true
The code below renders a field with the custom_field name, "Custom field" label and three checkboxes, requiring at least one option to be checked.
custom_field
echo ( new HivePress\Fields\Checkboxes( [ 'name' => 'custom_field', 'label' => 'Custom field', 'required' => true, 'options' => [ 'one' => 'One', 'two' => 'Two', 'three' => 'Three', ], ] ) )->render();