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; }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
1.4.3 | Introduced. |