Tribe__Tickets__Attendees::event_details_top( int $event_id )
Injects event post type
Contents
Parameters
- $event_id
-
(int) (Required)
Source
File: src/Tribe/Attendees.php
public function event_details_top( $event_id ) {
$pto = get_post_type_object( get_post_type( $event_id ) );
echo '
<li class="post-type">
<strong>' . esc_html__( 'Post type', 'event-tickets' ) . ': </strong>
' . esc_html( strtolower( $pto->labels->singular_name ) ) . '
</li>
';
}
Changelog
| Version | Description |
|---|---|
| 4.6.2 | Introduced. |