Hooks::filter_template_include( string $template )
Filters the template included file.
Contents
Parameters
- $template
-
(string) (Required) The template included file, as found by WordPress.
Return
(string) The template file to include, depending on the query and settings.
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 );
}
Changelog
| Version | Description |
|---|---|
| 4.9.2 | Introduced. |