Tribe__Tickets__Theme_Compatibility::get_registered_themes()
Returns a list of themes registered for compatibility with our Views.
Return
(array) An array of the themes registered.
Source
File: src/Tribe/Theme_Compatibility.php
public function get_registered_themes() {
/**
* Filters the list of themes that are registered for compatibility.
*
* @since 4.11.4
*
* @param array $registered An associative array of views in the shape `[ <slug> => <class> ]`.
*/
$registered = apply_filters( 'tribe_tickets_theme_compatibility_registered', $this->themes );
return (array) $registered;
}
Changelog
| Version | Description |
|---|---|
| 4.11.4 | Introduced. |