Tribe__Tickets__Editor__Template__Overwrite::include_blocks_in_events()
Source
File: src/Tribe/Editor/Template/Overwrite.php
public function include_blocks_in_events() {
$post_id = get_the_ID();
if (
false === $post_id
|| ! has_blocks( $post_id )
|| ! $this->should_inject_tickets_in_events( $post_id )
|| $this->has_classic_editor( $post_id )
) {
return;
}
$this->setup_template( $post_id );
}