Tribe__Tickets_Plus__Commerce__EDD__Main::edd_meta_box()
Registers a metabox in the EDD product edit screen with a link back to the product related Event.
Return
(void)
Source
File: src/Tribe/Commerce/EDD/Main.php
public function edd_meta_box() {
$post_id = get_post_meta( get_the_ID(), $this->event_key, true );
if ( empty( $post_id ) ) {
return;
}
add_meta_box(
'eddtickets-linkback',
__( 'Event', 'event-tickets-plus' ),
array( $this, 'edd_meta_box_inside' ),
$this->ticket_object,
'normal',
'high'
);
}