Customizer::filter_inline_sheets( TribeEventsCommunityViewsV2array $inline_sheets )

Filters the Customizer sheets that are target of a possible inline style print if enqueued to add the plugin ones.


Parameters

$inline_sheets

(<span class="TribeEventsCommunityViewsV2array">TribeEventsCommunityViewsV2array) (Required) The list of style sheet handles that are currently candidates for inline style print if enqueued.


Top ↑

Return

(TribeEventsCommunityViewsV2array<string>) The filtered list of style sheet handles candidate for inline style print.


Top ↑

Source

File: src/Tribe/Views/V2/Customizer.php

	public function filter_inline_sheets( array $inline_sheets ) {
		$inline_sheets[] = 'tribe-events-community';
		$inline_sheets[] = 'tribe-events-community-list';

		return $inline_sheets;
	}

Top ↑

Changelog

Changelog
Version Description
4.8.3 Introduced.