/home/desid573/verdenaturopathy.com.au/wp-content/themes/polite/templatesell
NameSizeModeActions
about/-0755rm
breadcrumbs/-0755rm
filters/-0755rm
hooks/-0755rm
pro-notice/-0755rm
theme-settings/-0755rm
upgrade/-0755rm
widgets/-0755rm
custom-header.php19490644editdlrm
customizer-category-control.php12400644editdlrm
customizer-radio-image-control.php14560644editdlrm
customizer.php56570644editdlrm
dynamic-css.php55600644editdlrm
enqueue.php53700644editdlrm
jetpack.php15100644editdlrm
sanitize-functions.php33730644editdlrm
template-functions.php9460644editdlrm
template-tags.php43520644editdlrm
ts-core-files.php28070644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/wp-content/themes/polite/templatesell/sanitize-functions.php (3373B)
get_control() https://developer.wordpress.org/reference/classes/wp_customize_manager/get_control/ * * @param string $input Slug to sanitize. * @param WP_Customize_Setting $setting Setting instance. * @return string Sanitized slug if it is a valid choice; otherwise, the setting default. */ function polite_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 ); } /** * Number Range sanitization callback example. * * - Sanitization: number_range * - Control: number, tel * * Sanitization callback for 'number' or 'tel' type text inputs. This callback sanitizes * `$number` as an absolute integer within a defined min-max range. * * @see absint() https://developer.wordpress.org/reference/functions/absint/ * * @param int $number Number to check within the numeric range defined by the setting. * @param WP_Customize_Setting $setting Setting instance. * @return int|string The number, if it is zero or greater and falls within the defined range; otherwise, * the setting default. */ function polite_sanitize_number_range( $number, $setting ) { // Ensure input is an absolute integer. $number = absint( $number ); // Get the input attributes associated with the setting. $atts = $setting->manager->get_control( $setting->id )->input_attrs; // Get minimum number in the range. $min = ( isset( $atts['min'] ) ? $atts['min'] : $number ); // Get maximum number in the range. $max = ( isset( $atts['max'] ) ? $atts['max'] : $number ); // Get step. $step = ( isset( $atts['step'] ) ? $atts['step'] : 1 ); // If the number is within the valid range, return it; otherwise, return the default return ( $min <= $number && $number <= $max && is_int( $number / $step ) ? $number : $setting->default ); } /** * Adds sanitization callback function: Number * @since Springy 1.0.0 */ if (!function_exists('polite_sanitize_number')) : function polite_sanitize_number($input) { if (isset($input) && is_numeric($input)) { return $input; } } endif;