Tribe__Tickets_Plus__Commerce__EDD__Main::edd_meta_box_inside()
Contents for the 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_inside() {
$post_id = get_post_meta( get_the_ID(), $this->event_key, true );
if ( ! empty( $post_id ) ) {
echo sprintf( '%s <a href="%s">%s</a>', __( 'This is a ticket for the event:', 'event-tickets-plus' ), esc_url( get_edit_post_link( $post_id ) ), esc_html( get_the_title( $post_id ) ) );
}
}