Astra_Addon_Customizer::sanitize_border( array $border )

Sanitize Border


Description


Parameters

$border

(array) (Required) Background object.


Return

(array) Background object.


Source

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

		public static function sanitize_border( $border ) {
			if ( is_callable( 'Astra_Customizer_Sanitizes::sanitize_border' ) ) {
				return Astra_Customizer_Sanitizes::sanitize_border( $border );
			}

			return $border;
		}

User Contributed Notes

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