Tribe__Template::set_template_folder_lookup( mixed $value = true )

Configures the class with the base folder in relation to the Origin


Parameters

$value

(mixed) (Optional) Should we look for template files in the list of folders.

Default value: true


Top ↑

Return

(self)


Top ↑

Source

File: src/Tribe/Template.php

	public function set_template_folder_lookup( $value = true ) {
		$this->template_folder_lookup = tribe_is_truthy( $value );

		return $this;
	}

Top ↑

Changelog

Changelog
Version Description
4.7.20 Introduced.