HEX
Server: Apache
System: Linux server 5.4.0-56-generic #62-Ubuntu SMP Mon Nov 23 19:20:19 UTC 2020 x86_64
User: losadagest (10000)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/aceitunaslosada.com/web/copia/wp-content/themes/betheme/single-download.php
<?php
/**
 * The template for displaying Easy Digital Download
 *
 * @package Betheme
 * @author Muffin group
 * @link https://muffingroup.com
 */

get_header();

$classes = 'no-share';

$translate['published'] = mfn_opts_get('translate') ? mfn_opts_get('translate-published','Published by') : __('Published by','betheme');
$translate['at'] = mfn_opts_get('translate') ? mfn_opts_get('translate-at','at') : __('at','betheme');
?>

<div id="Content">
	<div class="content_wrapper clearfix">

		<div class="sections_group">
			<div id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?>>

				<div class="section section-post-header">
					<div class="section_wrapper clearfix">

						<div class="column one post-header">
							<div class="title_wrapper">

								<?php
									if( mfn_opts_get( 'blog-title' ) ){
										$h = mfn_opts_get( 'title-heading', 1 );
										echo '<h'. esc_attr($h) .' class="entry-title" itemprop="headline">'. wp_kses(get_the_title(), mfn_allowed_html()) .'</h'. esc_attr($h) .'>';
									}
								?>

								<?php if( mfn_opts_get( 'blog-meta' ) ): ?>
									<div class="post-meta clearfix">

										<div class="author-date">
											<span class="vcard author post-author">
												<?php echo esc_html($translate['published']); ?> <i class="icon-user"></i>
												<span class="fn"><a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>"><?php the_author_meta( 'display_name' ); ?></a></span>
											</span>
											<span class="date">
												<?php echo esc_html($translate['at']); ?> <i class="icon-clock"></i>
												<time class="entry-date" datetime="<?php the_date('c'); ?>" itemprop="datePublished" pubdate><?php echo esc_html(get_the_date()); ?></time>
											</span>
										</div>

									</div>
								<?php endif; ?>

							</div>
						</div>

						<div class="column one single-photo-wrapper">
							<div class="image_frame scale-with-grid <?php if( ! mfn_opts_get('blog-single-zoom') ) echo 'disabled'; ?>">
								<div class="image_wrapper">
									<?php echo mfn_post_thumbnail( get_the_ID() ); ?>
								</div>
							</div>
						</div>

					</div>
				</div>

				<div class="post-wrapper-content">

					<div class="section the_content">
						<div class="section_wrapper">

							<div class="the_content_wrapper">
								<?php
									while( have_posts() ){
										the_post();
										the_content();
									}
								?>
							</div>

						</div>
					</div>

					<div class="section section-post-footer">
						<div class="section_wrapper clearfix">

							<div class="column one post-pager">
								<?php
									wp_link_pages(array(
										'before' => '<div class="pager-single">',
										'after' => '</div>',
										'link_before' => '<span>',
										'link_after' => '</span>',
										'next_or_number' => 'number'
									));
								?>
							</div>

						</div>
					</div>

					<div class="section section-post-about">
						<div class="section_wrapper clearfix">

							<?php if( mfn_opts_get( 'blog-author' ) ): ?>
								<div class="column one author-box">
									<div class="author-box-wrapper">
										<div class="avatar-wrapper">
											<?php
												global $user;
												echo get_avatar(get_the_author_meta('email'), '64', false, get_the_author_meta('display_name', $user['ID']));
											?>
										</div>
										<div class="desc-wrapper">
											<h5><a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>"><?php the_author_meta( 'display_name' ); ?></a></h5>
											<div class="desc"><?php the_author_meta('description'); ?></div>
										</div>
									</div>
								</div>
							<?php endif; ?>

						</div>
					</div>

				</div>

			</div>
		</div>

		<?php if( is_active_sidebar( 'edd' ) ): ?>
			<div class="sidebar four columns">
				<div class="widget-area clearfix <?php echo esc_attr(mfn_opts_get('sidebar-lines')); ?>">
					<?php dynamic_sidebar( 'edd' ); ?>
				</div>
			</div>
		<?php endif; ?>

	</div>
</div>

<?php get_footer();