Tribe__Template::get_values()
Returns the Template global and local context values.
Local values will override the template global context values.
Return
(array) An associative key/value array of the Template global and local context.
Source
File: src/Tribe/Template.php
public function get_values() {
return array_merge( $this->get_global_values(), $this->get_local_values() );
}
Changelog
| Version | Description |
|---|---|
| 4.9.11 | Introduced. |