Tribe__Tickets__Tickets::get_attendees_by_id( int $post_id, null|string $post_type = null )

Get attendees for a Post ID / Post type.


Parameters

$post_id

(int) (Required) Post ID.

$post_type

(null|string) (Optional) Post type.

Default value: null


Top ↑

Return

(array) List of attendees.


Top ↑

Source

File: src/Tribe/Tickets.php

		public function get_attendees_by_id( $post_id, $post_type = null ) {
			return $this->get_attendees_by_post_id( $post_id );
		}