-
-
Save devNigel/73df540f243d9d35ac08004f3d2221d4 to your computer and use it in GitHub Desktop.
Add a Textarea field to the WordPress Customizer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $wp_customize->add_setting( 'themeslug_textarea_setting_id', array( | |
| 'capability' => 'edit_theme_options', | |
| 'default' => 'Lorem Ipsum Dolor Sit amet', | |
| 'sanitize_callback' => 'sanitize_textarea_field', | |
| ) ); | |
| $wp_customize->add_control( 'themeslug_textarea_setting_id', array( | |
| 'type' => 'textarea', | |
| 'section' => 'custom_section', // // Add a default or your own section | |
| 'label' => __( 'Custom Text Area' ), | |
| 'description' => __( 'This is a custom textarea.' ), | |
| ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment