Skip to content

Instantly share code, notes, and snippets.

@ajskelton
Last active February 27, 2023 11:57
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save ajskelton/7bfd04bba378d22f9df3dafe9b5a42e1 to your computer and use it in GitHub Desktop.
Save ajskelton/7bfd04bba378d22f9df3dafe9b5a42e1 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