Post_Repository::attendee_to_event_keys()

Returns the list of meta keys relating an Attendee to a Post (Event).

Extending repository classes should override this to add more keys.


Return

(array)


Top ↑

Source

File: src/Tribe/Repositories/Post_Repository.php

	public function attendee_to_event_keys() {
		return [
			'rsvp'           => '_tribe_rsvp_event',
			'tribe-commerce' => '_tribe_tpp_event',
		];
	}

Top ↑

Changelog

Changelog
Version Description
4.12.1 Introduced.