Astra_Addon_Customizer::sanitize_background_obj( array $bg_obj )

Sanitize background obj


Description


Parameters

$bg_obj

(array) (Required) Background object.


Return

(array) Background object.


Source

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

		public static function sanitize_background_obj( $bg_obj ) {
			if ( is_callable( 'Astra_Customizer_Sanitizes::sanitize_background_obj' ) ) {
				return Astra_Customizer_Sanitizes::sanitize_background_obj( $bg_obj );
			}

			return $bg_obj;
		}

User Contributed Notes

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