Tribe__Events__Pro__Main::customizer_inline_stylesheets( array $sheets, string $css_template )
Add legacy stylesheets to customizer styles array to check.
Topics
Parameters #
- $sheets
-
(<span class="array">array) (Required) Array of sheets to search for.
- $css_template
-
(string) (Required) String containing the inline css to add.
Return #
(array) Modified array of sheets to search for.
Source #
File: src/Tribe/Main.php
public function customizer_inline_stylesheets( $sheets, $css_template ) { $pro_sheets = [ 'tribe-events-calendar-pro-style', 'widget-calendar-pro-style', ]; return array_merge( $sheets, $pro_sheets ); }