Skip to content

Instantly share code, notes, and snippets.

@Jespertastesen
Forked from ajskelton/WP Customizer - Text
Created May 27, 2017 16:13
Show Gist options
  • Save Jespertastesen/61b5adf1e218de15abc8de4e8a86ad1b to your computer and use it in GitHub Desktop.
Save Jespertastesen/61b5adf1e218de15abc8de4e8a86ad1b to your computer and use it in GitHub Desktop.
Add a Text field to the WordPress Customizer.
$wp_customize->add_setting( 'themeslug_text_setting_id', array(
'capability' => 'edit_theme_options',
'default' => 'Lorem Ipsum',
'sanitize_callback' => 'sanitize_text_field',
) );
$wp_customize->add_control( 'themeslug_text_setting_id', array(
'type' => 'text',
'section' => 'custom_section', // Add a default or your own section
'label' => __( 'Custom Text' ),
'description' => __( 'This is a custom text box.' ),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment