Astra_Customizer_Sanitizes::validate_sidebar_content_width( number $value )

Validate Sidebar Content Width


Description


Parameters

$value

(number) (Required) Sidebar content width.


Return

(number) Sidebar content width value.


Source

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

		public static function validate_sidebar_content_width( $value ) {
			$value = intval( $value );
			if ( $value > 50 ) {
				$value = 50;
			} elseif ( $value < 15 ) {
				$value = 15;
			}
			return $value;
		}

User Contributed Notes

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