Astra_Addon_Customizer::responsive_values( int $desktop = '', int $tablet = '', int $mobile = '' )

Generates an array with responsive values for desktop, tablet and mobile.


Description


Parameters

$desktop

(int) (Optional) Desktop value.

Default value: ''

$tablet

(int) (Optional) Tablet value.

Default value: ''

$mobile

(int) (Optional) Mobile value.

Default value: ''


Return

(array) Array with responsive values.


Source

File: classes/customizer/class-astra-addon-customizer.php

		public static function responsive_values( $desktop = '', $tablet = '', $mobile = '' ) {
			return compact( 'desktop', 'tablet', 'mobile' );
		}

Changelog

Changelog
Version Description
4.10.0 Introduced.


User Contributed Notes

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