Tribe__Events__Filterbar__View::template_paths( $template_paths = array() )
Add premium plugin paths for each file in the templates array
Contents
Parameters
- $template_paths
-
(Optional) array
Default value: array()
Return
(array)
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;
}
Changelog
| Version | Description |
|---|---|
| 3.4 | Introduced. |