Tribe__Events__Filterbar__View::template_paths( $template_paths = array() )

Add premium plugin paths for each file in the templates array


Parameters

$template_paths

(Optional) array

Default value: array()


Top ↑

Return

(array)


Top ↑

Source

File: src/Tribe/View.php

		public function template_paths( $template_paths = array() ) {
			// To prevent problems with Backwards compatibility
			$template_paths['filter-bar'] = $this->pluginPath;

			// New Path
			$template_paths['filterbar'] = $this->pluginPath;
			return $template_paths;
		}

Top ↑

Changelog

Changelog
Version Description
3.4 Introduced.