default ); } /*radio button sanitization*/ function broker_consultants_sanitize_choices( $input, $setting ) { global $wp_customize; $control = $wp_customize->get_control( $setting->id ); if ( array_key_exists( $input, $control->choices ) ) { return $input; } else { return $setting->default; } } if ( ! function_exists( 'broker_consultants_sanitize_integer' ) ) { function broker_consultants_sanitize_integer( $input ) { return (int) $input; } } //sanitize number field function broker_consultants_sanitize_number_absint( $number, $setting ) { // Ensure $number is an absolute integer (whole number, zero or greater). $number = absint( $number ); // If the input is an absolute integer, return it; otherwise, return the default return ( $number ? $number : $setting->default ); }