Astra_Customizer_Sanitizes::validate_site_width( number $value )

Validate Site width


Description


Parameters

$value

(number) (Required) Site width.


Return

(number) Site width value.


Source

File: inc/customizer/class-astra-customizer-sanitizes.php

		public static function validate_site_width( $value ) {
			$value = intval( $value );
			if ( 1920 < $value ) {
				$value = 1920;
			} elseif ( 768 > $value ) {
				$value = 768;
			}
			return $value;
		}

User Contributed Notes

You must log in before being able to contribute a note or feedback.