Tribe__Customizer::maybe_fallback_get_option( mixed $sections )
Backwards compatibility for the old Customizer Option Save
Contents
Parameters
- $sections
-
(mixed) (Required)
Return
(mixed)
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() );
}
Changelog
| Version | Description |
|---|---|
| 4.4 | Introduced. |