Assets::get_widget_groups()
Allows widgets to add themselves to the css groups for icon styles.
Return
(array) The list of groups.
Source
File: src/Tribe/Assets.php
public function get_widget_groups() {
$groups = [];
/**
* Allow filtering of the widget asset groups.
*
* @since 1.4.0
*
* @param array $groups List of asset groups.
*/
return apply_filters( 'tribe_events_virtual_assets_should_enqueue_widget_groups', $groups );
}
Changelog
| Version | Description |
|---|---|
| 1.4.0 | Introduced. |