Tribe__Events__Main::filter_tracker_event_taxonomies( array $taxonomies )

By default Tribe__Tracker won’t track our Post Types taxonomies, so we add them here.


Parameters

$taxonomies

(array) (Required)


Top ↑

Return

(array)


Top ↑

Source

File: src/Tribe/Main.php

		public function filter_tracker_event_taxonomies( array $taxonomies ) {
			$taxonomies[] = 'post_tag';
			$taxonomies[] = self::TAXONOMY;

			return $taxonomies;
		}

Top ↑

Changelog

Changelog
Version Description
4.5 Introduced.