Last active
May 14, 2024 04:54
-
-
Save ajskelton/8ae331406bd99254874b42c69ff0aa48 to your computer and use it in GitHub Desktop.
Add a Select field to the WordPress Customizer.
This file contains 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_select_setting_id', array( | |
'capability' => 'edit_theme_options', | |
'sanitize_callback' => 'themeslug_sanitize_select', | |
'default' => 'value1', | |
) ); | |
$wp_customize->add_control( 'themeslug_select_setting_id', array( | |
'type' => 'select', | |
'section' => 'custom_section', // Add a default or your own section | |
'label' => __( 'Custom Select Option' ), | |
'description' => __( 'This is a custom select option.' ), | |
'choices' => array( | |
'value1' => __( 'Value 1' ), | |
'value2' => __( 'Value 2' ), | |
'value3' => __( 'Value 3' ), | |
), | |
) ); | |
function themeslug_sanitize_select( $input, $setting ) { | |
// Ensure input is a slug. | |
$input = sanitize_key( $input ); | |
// Get list of choices from the control associated with the setting. | |
$choices = $setting->manager->get_control( $setting->id )->choices; | |
// If the input is a valid key, return it; otherwise, return the default. | |
return ( array_key_exists( $input, $choices ) ? $input : $setting->default ); | |
} |
@JacobDB It Works, Thanks.
I can't display the result.
I want to change the Background color with this select Box.
Please Help
Does this code even work anymore ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thinking the same.