Answers for "checkbox options wordpress"

0

checkbox options wordpress

<?php $options = get_option( 'myoption' ); ?>
<input type="checkbox" name="myoption[option_one]" value="1"<?php checked( 1 == $options['option_one'] ); ?> />
<input type="checkbox" name="myoption[option_two]" value="1"<?php checked( 1 == $options['option_two'] ); ?> />
Posted by: Guest on March-26-2021

Code answers related to "checkbox options wordpress"

Browse Popular Code Answers by Language