Astra_Customizer_Control_Base::get_sanitize_call( string $control )

Returns Santize callback for control


Description


Parameters

$control

(string) (Required) control.


Return

(string)


Source

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

		public static function get_sanitize_call( $control ) {

			if ( isset( self::$controls[ $control ]['sanitize_callback'] ) ) {
				return self::$controls[ $control ]['sanitize_callback'];
			}

			return false;
		}

Changelog

Changelog
Version Description
1.4.3 Introduced.


User Contributed Notes

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