Tribe__Events__Main::get_category_slug()

Returns the string to be used as the taxonomy slug.

Contents


Return

(string)


Top ↑

Source

File: src/Tribe/Main.php

		public function get_category_slug() {
			/**
			 * Provides an opportunity to modify the category slug.
			 *
			 * @var string
			 */
			return apply_filters( 'tribe_events_category_slug', sanitize_title( __( 'category', 'the-events-calendar' ) ) );
		}