HEX
Server: Apache/2.4.29 (Ubuntu)
System: Linux bareserver 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: root (0)
PHP: 7.2.24-0ubuntu0.18.04.17
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,
Upload Files
File: /var/www/html/site/newsite/wp-content/plugins/the-events-calendar/src/views/embed.php
<?php
/**
 * Contains the post embed base template
 *
 * When a post is embedded in an iframe, this file is used to create the output
 * if the active theme does not include an embed.php template.
 *
 * Override this template in your own theme by creating a file at [your-theme]/tribe-events/embed.php
 *
 * @version 4.2
 *
 * @package TribeEventsCalendar
 *
 */

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

get_header( 'embed' );

?>
<div id="tribe-events-content" <?php post_class( 'wp-embed tribe-embed' ); ?>>
	<?php do_action( 'tribe_events_embed_before_the_event_feature_image' ); ?>
	<?php tribe_get_template_part( 'embed/image' ); ?>
	<?php do_action( 'tribe_events_embed_after_the_event_feature_image' ); ?>

	<?php do_action( 'tribe_events_embed_before_the_event_title' ) ?>
	<h2 class="wp-embed-heading tribe-events-list-event-title">
		<a class="tribe-event-url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute() ?>" rel="bookmark">
			<?php the_title() ?>
		</a>
	</h2>
	<?php do_action( 'tribe_events_embed_after_the_event_title' ) ?>

	<?php tribe_get_template_part( 'embed/meta' ); ?>

	<?php while ( have_posts() ) :  the_post(); ?>
		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
			<?php do_action( 'tribe_events_embed_before_the_content' ) ?>
			<?php tribe_get_template_part( 'embed/content' ); ?>
			<?php do_action( 'tribe_events_embed_after_the_content' ) ?>
		</div>
	<?php endwhile; ?>

	<?php do_action( 'tribe_events_embed_before_the_event_footer' ); ?>
	<?php tribe_get_template_part( 'embed/footer' ); ?>
	<?php do_action( 'tribe_events_embed_after_the_event_footer' ); ?>
</div><!-- #tribe-events-content -->
<?php

get_footer( 'embed' );