Skip to content

Instantly share code, notes, and snippets.

@iledcom
Created August 1, 2015 14:14
Show Gist options
  • Save iledcom/f5edaf6d3e98e26a07e2 to your computer and use it in GitHub Desktop.
Save iledcom/f5edaf6d3e98e26a07e2 to your computer and use it in GitHub Desktop.
WordPress get theme_options
<?php
$options = get_option('sample_theme_options');
echo $options['phonetext'];
?>
// from theme-options.php
<input id="sample_theme_options[phonetext]" class="regular-text" type="text" name="sample_theme_options[phonetext]" value="<?php esc_attr_e( $options['phonetext'] ); ?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment