Tribe__Tickets_Plus__Commerce__Attendance_Totals::get_total_sold()
The total number of tickets sold for this event.
Return
(int)
Source
File: src/Tribe/Commerce/Attendance_Totals.php
public function get_total_sold() {
/**
* Returns the total tickets sold for an event.
*
* @param int $total_sold
* @param int $original_total_sold
* @param int $event_id
*/
return (int) apply_filters( 'tribe_tickets_plus_get_total_sold', $this->total_sold, $this->total_sold, $this->event_id );
}
Changelog
| Version | Description |
|---|---|
| 4.3 | Introduced. |