Tribe__Events__Main::add_space_to_rss( string $title )

Add space to the title in RSS


Parameters

$title

(string) (Required)


Top ↑

Return

(string)


Top ↑

Source

File: src/Tribe/Main.php

		public function add_space_to_rss( $title ) {
			if ( ! $wp_query = tribe_get_global_query_object() ) {
				return;
			}

			if ( get_query_var( 'eventDisplay' ) == 'upcoming' && get_query_var( 'post_type' ) == self::POSTTYPE ) {
				return $title . ' ';
			}

			return $title;
		}