WP_Rocket::filter_excluded_inline_js_concat( array $excluded_inline )

Filters the content of the WP Rocket excluded inline JS concat.


Parameters

$excluded_inline

(array) (Required) Items to be excluded by WP Rocket.


Top ↑

Return

(array) Excluded inline scripts after adding the breakpoint code.


Top ↑

Source

File: src/Tribe/Integrations/WP_Rocket.php

	public function filter_excluded_inline_js_concat( array $excluded_inline ) {
		$excluded_inline[] = 'data-view-breakpoint-pointer';
		return $excluded_inline;
	}

Top ↑

Changelog

Changelog
Version Description
5.0.0.2 Introduced.