Hooks::filter_template_include( string $template )

Filters the template included file.


Parameters

$template

(string) (Required) The template included file, as found by WordPress.


Top ↑

Return

(string) The template file to include, depending on the query and settings.


Top ↑

Source

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

	public function filter_template_include( $template ) {
		return $this->container->make( Template_Bootstrap::class )
		                       ->filter_template_include( $template );
	}

Top ↑

Changelog

Changelog
Version Description
4.9.2 Introduced.