Skip to content

Instantly share code, notes, and snippets.

@eyecandy91
Last active September 15, 2016 12:02
Show Gist options
  • Save eyecandy91/9bd4fa9133aa984ef52ea403a6f7ea50 to your computer and use it in GitHub Desktop.
Save eyecandy91/9bd4fa9133aa984ef52ea403a6f7ea50 to your computer and use it in GitHub Desktop.
show data IF checkbox is checked using the theme options plugin
// Remember to make the option field 'std' => '1',
<?php if ( 1 == of_get_option('app_on_off') ) { ?>
<p>checked</p>
<?php } else { ?>
<p>unchecked</p>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment