Customizer::filter_global_elements_css_template( string $css_template, Tribe__Customizer__Section $section, Tribe__Customizer $customizer )
Filters the Global Elements section CSS template to add Views v2 related style templates to it.
Contents
Parameters
- $css_template
-
(string) (Required) The CSS template, as produced by the Global Elements.
- $section
-
(Tribe__Customizer__Section) (Required) The Global Elements section.
- $customizer
-
(Tribe__Customizer) (Required) The current Customizer instance.
Return
(string) The filtered CSS template.
Source
File: src/Tribe/Views/V2/Customizer.php
public function filter_global_elements_css_template( $css_template, $section, $customizer ) { // TODO Filter the CSS template. return $css_template; }
Changelog
Version | Description |
---|---|
4.8.3 | Introduced. |