Astra_Customizer_Control_Base::get_control( string $control_type )

Returns control and its attributes


Description


Parameters

$control_type

(string) (Required) control type.


Return

(array)


Source

File: inc/customizer/custom-controls/class-astra-customizer-control-base.php

		public static function get_control( $control_type ) {
			if ( isset( self::$controls[ $control_type ] ) ) {
				return self::$controls[ $control_type ];
			}

			return array();
		}

Changelog

Changelog
Version Description
1.4.3 Introduced.


User Contributed Notes

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