Tribe__Template::set_template_folder_lookup( mixed $value = true )
Configures the class with the base folder in relation to the Origin
Contents
Parameters
- $value
-
(mixed) (Optional) Should we look for template files in the list of folders.
Default value: true
Return
(self)
Source
File: src/Tribe/Template.php
public function set_template_folder_lookup( $value = true ) {
$this->template_folder_lookup = tribe_is_truthy( $value );
return $this;
}
Changelog
| Version | Description |
|---|---|
| 4.7.20 | Introduced. |