Tribe__Template::set_template_current_hook_name( string $value )

Set the current hook name for the template include.


Parameters

$value

(string) (Required) Which value will be saved as the current hook name.


Top ↑

Return

(self) Allow daisy-chaining.


Top ↑

Source

File: src/Tribe/Template.php

	 public function set_template_current_hook_name( $value ) {
		$this->template_current_hook_name = (string) $value;

		return $this;
	}

Top ↑

Changelog

Changelog
Version Description
4.12.1 Introduced.