Astra_Customizer_Sanitizes::sanitize_choices( string $input, object $setting )
Sanitize Select choices
Description
Parameters
- $input
-
(string) (Required) setting input.
- $setting
-
(object) (Required) setting object.
Return
(mixed) setting input value.
Source
File: inc/customizer/class-astra-customizer-sanitizes.php
public static function sanitize_choices( $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 ); }
Expand full source code Collapse full source code View on Trac