add_setting()` * 'sanitize_callback'. It is wrapped in a callback here merely for example purposes. * * @see wp_strip_all_tags() https://developer.wordpress.org/reference/functions/wp_strip_all_tags/ * * @param string $css CSS to sanitize. * @return string Sanitized CSS. */ function adas_portfolio_sanitize_css( $css ) { return wp_strip_all_tags( $css ); } /** * HEX Color sanitization callback example. * * - Sanitization: hex_color * - Control: text, WP_Customize_Color_Control * * Note: sanitize_hex_color_no_hash() can also be used here, depending on whether * or not the hash prefix should be stored/retrieved with the hex color value. * * @see sanitize_hex_color() https://developer.wordpress.org/reference/functions/sanitize_hex_color/ * @link sanitize_hex_color_no_hash() https://developer.wordpress.org/reference/functions/sanitize_hex_color_no_hash/ * * @param string $hex_color HEX color to sanitize. * @param WP_Customize_Setting $setting Setting instance. * @return string The sanitized hex color if not null; otherwise, the setting default. */ function adas_portfolio_sanitize_hex_color( $hex_color, $setting ) { // Sanitize $input as a hex value without the hash prefix. $hex_color = sanitize_hex_color( $hex_color ); // If $input is a valid hex value, return it; otherwise, return the default. return ( ! is_null( $hex_color ) ? $hex_color : $setting->default ); } /** * Sanitization: image * Control: text, WP_Customize_Image_Control * * Sanitization callback for images. * * @uses theme_slug_validate_image() * @uses esc_url_raw() http://codex.wordpress.org/Function_Reference/esc_url_raw */ function adas_portfolio_sanitize_image( $input, $setting ) { return esc_url_raw( adas_portfolio_validate_image( $input, $setting->default ) ); } /** * Validation: image * Control: text, WP_Customize_Image_Control * * @uses wp_check_filetype() https://developer.wordpress.org/reference/functions/wp_check_filetype/ * @uses in_array() http://php.net/manual/en/function.in-array.php */ function adas_portfolio_validate_image( $input, $default = '' ) { // Array of valid image file types // The array includes image mime types // that are included in wp_get_mime_types() $mimes = array( 'jpg|jpeg|jpe' => 'image/jpeg', 'gif' => 'image/gif', 'png' => 'image/png', 'bmp' => 'image/bmp', 'tif|tiff' => 'image/tiff', 'ico' => 'image/x-icon' ); // Return an array with file extension // and mime_type $file = wp_check_filetype( $input, $mimes ); // If $input has a valid mime_type, // return it; otherwise, return // the default. return ( $file['ext'] ? $input : $default ); } /** * Number sanitization callback example. * * - Sanitization: number_absint * - Control: number * * Sanitization callback for 'number' type text inputs. This callback sanitizes `$number` * as an absolute integer (whole number, zero or greater). * * NOTE: absint() can be passed directly as `$wp_customize->add_setting()` 'sanitize_callback'. * It is wrapped in a callback here merely for example purposes. * * @see absint() https://developer.wordpress.org/reference/functions/absint/ * * @param int $number Number to sanitize. * @param WP_Customize_Setting $setting Setting instance. * @return int Sanitized number; otherwise, the setting default. */ function adas_portfolio_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 ); } /** * Select sanitization callback example. * * - Sanitization: select * - Control: select, radio * * Sanitization callback for 'select' and 'radio' type controls. This callback sanitizes `$input` * as a slug, and then validates `$input` against the choices defined for the control. * * @see sanitize_key() https://developer.wordpress.org/reference/functions/sanitize_key/ * @see $wp_customize->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 adas_portfolio_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 ); } /** * Sanitize Category. * @param $input * @return int */ function adas_portfolio_sanitize_category($input){ $output=intval($input); return $output; } if ( ! class_exists( 'WP_Customize_Control' ) ) return NULL;