Tribe__Customizer::maybe_fallback_get_option( mixed $sections )

Backwards compatibility for the old Customizer Option Save


Parameters

$sections

(mixed) (Required)


Top ↑

Return

(mixed)


Top ↑

Source

File: src/Tribe/Customizer.php

	public function maybe_fallback_get_option( $sections ) {
		// Return if there is something there
		if ( ! empty( $sections ) ) {
			return $sections;
		}

		return get_option( 'tribe_events_pro_customizer', array() );
	}

Top ↑

Changelog

Changelog
Version Description
4.4 Introduced.