manager->get_control( $setting->id )->input_attrs; // Get min. $min = ( isset( $atts['min'] ) ? $atts['min'] : $input ); // Get max. $max = ( isset( $atts['max'] ) ? $atts['max'] : $input ); // Get Step. $architecture_construction_step = ( isset( $atts['step'] ) ? $atts['step'] : 1 ); // If the input is within the valid range, return it; otherwise, return the default. return ( $min <= $input && $input <= $max && is_int( $input / $architecture_construction_step ) ? $input : $setting->default ); } /*------------------------------------------------------------------------*/ /** * Sanitize the text alignment options. * * @param string $input The input to be sanitized. * @return string The sanitized input. */ function architecture_construction_sanitize_text_alignment($input) { $valid = array('left', 'center', 'right'); if (in_array($input, $valid, true)) { return $input; } return 'left'; } /*------------------------------------------------------------------------*/ // Sanitize Font Weight function architecture_construction_sanitize_font_weight( $value ) { $valid = array( '100', '200', '300', '400', '500', '600', '700', '800', '900' ); return in_array( $value, $valid ) ? $value : '400'; } /*------------------------------------------------------------------------*/ // Sanitize Text Transform function architecture_construction_sanitize_text_transform( $value ) { $valid = array( 'none', 'capitalize', 'uppercase', 'lowercase' ); return in_array( $value, $valid ) ? $value : 'none'; } /*------------------------------------------------------------------------*/ function architecture_construction_sanitize_post_content_align($input) { // Define the valid options $valid = array('left-align', 'right-align', 'center-align'); // Check if the input is in the array of valid options, otherwise return the default. if (in_array($input, $valid, true)) { return $input; } // Default fallback if the input is not valid. return 'left-align'; } /*------------------------------------------------------------------------*/ function architecture_construction_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( 'architecture_construction_dropdown_pages' ) ) : function architecture_construction_dropdown_pages( $page_id, $setting ) { // Ensure $input is an absolute integer. $page_id = absint( $page_id ); // If $page_id is an ID of a published page, return it; otherwise, return the default. return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default ); } endif; /*------------------------------------------------------------------------*/ function architecture_construction_sanitize_choicess($input) { $valid = array( 'Arial' => 'Arial, sans-serif', 'Verdana' => 'Verdana, sans-serif', 'Helvetica' => 'Helvetica, sans-serif', 'Times New Roman'=> '"Times New Roman", serif', 'Georgia' => 'Georgia, serif', 'Courier New' => '"Courier New", monospace', 'Trebuchet MS' => '"Trebuchet MS", sans-serif', 'Tahoma' => 'Tahoma, sans-serif', 'Palatino' => '"Palatino Linotype", serif', 'Garamond' => 'Garamond, serif', 'Impact' => 'Impact, sans-serif', 'Comic Sans MS' => '"Comic Sans MS", cursive, sans-serif', 'Lucida Sans' => '"Lucida Sans Unicode", sans-serif', 'Arial Black' => '"Arial Black", sans-serif', 'Gill Sans' => '"Gill Sans", sans-serif', 'Segoe UI' => '"Segoe UI", sans-serif', 'Open Sans' => '"Open Sans", sans-serif', 'Roboto' => 'Roboto, sans-serif', 'Lato' => 'Lato, sans-serif', 'Montserrat' => 'Montserrat, sans-serif', ); return (array_key_exists($input, $valid)) ? $input : ''; } /*------------------------------------------------------------------------*/ // Sanitize callback function function architecture_construction_sanitize_post_layout($input) { $valid = array('one-column', 'right-sidebar', 'left-sidebar', 'three-column', 'four-column'); if (in_array($input, $valid, true)) { return $input; } return 'right-sidebar'; // Default value if the input is invalid } /*------------------------------------------------------------------------*/ function architecture_construction_sanitize_scroll_top_alignment($input) { $valid = array('right-align', 'center-align', 'left-align'); if (in_array($input, $valid, true)) { return $input; } return 'right-align'; } /*------------------------------------------------------------------------*/ function architecture_construction_sanitize_pagination_alignment($input) { $valid = array('right-align', 'center-align', 'left-align'); if (in_array($input, $valid, true)) { return $input; } return 'left-align'; } /*------------------------------------------------------------------------*/ // Sanitize Sortable control. function architecture_construction_sanitize_sortable( $val, $setting ) { if ( is_string( $val ) || is_numeric( $val ) ) { return array( esc_attr( $val ), ); } $sanitized_value = array(); foreach ( $val as $item ) { if ( isset( $setting->manager->get_control( $setting->id )->choices[ $item ] ) ) { $sanitized_value[] = esc_attr( $item ); } } return $sanitized_value; }