Tribe__Tickets__Attendees::get_export_url()
Generate the export URL for exporting attendees.
Return
(string) Relative URL for the export.
Source
File: src/Tribe/Attendees.php
public function get_export_url() {
return add_query_arg(
[
'attendees_csv' => true,
'attendees_csv_nonce' => wp_create_nonce( 'attendees_csv_nonce' ),
]
);
}
Changelog
| Version | Description |
|---|---|
| 5.1.7 | Introduced. |