Skip to content

Instantly share code, notes, and snippets.

@kopiro
Last active January 19, 2016 09:03
Show Gist options
  • Select an option

  • Save kopiro/5664cc31e52b392f8e32 to your computer and use it in GitHub Desktop.

Select an option

Save kopiro/5664cc31e52b392f8e32 to your computer and use it in GitHub Desktop.
Fast add setting in WP
<?php
add_action( 'admin_init', function() {
$option = 'test';
register_setting('general', $option, 'esc_attr');
add_settings_field($option, 'Test', function() use ($option) {
$value = get_option($option, '');
echo '<input type="text" id="' . $option . '" name="' . $option . '" value="' . esc_attr($value) . '" />';
}, 'general');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment