Attendees::get_title()

Gets the Orders Report.


Return

(string)


Top ↑

Source

File: src/Tickets/Commerce/Reports/Attendees.php

	public function get_title() {
		$post_id = tribe_get_request_var( 'event_id' );

		// translators: The title of an event's Attendee List page in the dashboard. %1$s is the name of the event. %2$d is numeric the event ID.
		return sprintf( __( 'Attendees for: %1$s [#%2$d]', 'event-tickets' ), esc_html( get_the_title( $post_id ) ), (int) $post_id );
	}

Top ↑

Changelog

Changelog
Version Description
5.2.0 Introduced.