HEX
Server: Apache/2.4.25
System: Linux ion14 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64
User: (10087)
PHP: 7.4.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,system, exec, shell_exec, passthru, popen, proc_open
Upload Files
File: /home/www/web115/wordpress/wp-content/themes/osmosis/tribe-events/pro/single-venue.php
<?php
/**
 * Single Venue Template
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

$venue_id = get_the_ID();

?>
<div id="grve-events-venue-area">
	<?php while ( have_posts() ) : the_post(); ?>
	<div id="post-<?php the_ID(); ?>" <?php post_class('grve-single-post'); ?>>
		<div id="grve-single-media">
			<!-- Event featured image, but exclude link -->
			<?php echo tribe_event_featured_image( $venue_id, 'grve-image-fullscreen', false ); ?>
		</div>

		<div id="grve-post-content">
			<!-- Venue Title -->
			<?php do_action('tribe_events_single_venue_before_title') ?>
			<?php grve_print_event_venue_simple_title(); ?>
			<?php do_action('tribe_events_single_venue_after_title') ?>
			<!-- Organizer Content -->
			<?php the_content(); ?>

			<!-- Organizer Meta -->
			<div class="grve-row">
				<div class="grve-column-1-3">
					<?php tribe_get_template_part( 'modules/meta/venue' ); ?>
				</div>
				<div class="grve-column-2-3">
				<?php if ( tribe_embed_google_map() && tribe_address_exists() ) : ?>
					<!-- Venue Map -->
					<div class="grve-tribe-events-map-wrap">
						<?php echo tribe_get_embedded_map( $venue_id, '100%', '250px' ); ?>
					</div>
				<?php endif; ?>
				</div>
			</div>
		</div>

		<!-- Upcoming event list -->
		<?php do_action('tribe_events_single_venue_before_upcoming_events') ?>
		<?php
		// @todo rewrite + use tribe_venue_upcoming_events()
		echo tribe_include_view_list( array(
			'venue'          => $venue_id,
			'eventDisplay'   => 'list',
			'posts_per_page' => apply_filters( 'tribe_events_single_venue_posts_per_page', 100 )
		) ) ?>
		<?php do_action('tribe_events_single_venue_after_upcoming_events') ?>

	</div><!-- .tribe-events-venue -->
	<?php endwhile; ?>
</div>