HEX
Server: Apache/2.4.49 (FreeBSD) OpenSSL/1.0.2s-freebsd PHP/5.6.36
System: FreeBSD hosting.icon.bg 11.3-RELEASE-p13 FreeBSD 11.3-RELEASE-p13 #0: Tue Sep 1 06:56:51 UTC 2020 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64
User: ftpuser (1002)
PHP: 5.6.36
Disabled: NONE
Upload Files
File: /hosting/kak.bg/web/wp-content/themes/vlog/vlog/single.php
<?php get_header(); ?>

<?php while ( have_posts() ) : the_post(); ?>

	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

		<?php $single_cover = vlog_get_single_layout(); ?>
		<?php if( $single_cover != 'none'): ?>
			<?php get_template_part( 'template-parts/single/cover', $single_cover ); ?>
		<?php endif; ?>

		<?php get_template_part('template-parts/ads/below-header'); ?>

		<?php global $vlog_sidebar_opts; ?>
		<?php $section_class = $vlog_sidebar_opts['use_sidebar'] == 'none' ? 'vlog-single-no-sid' : '' ?>

		<div class="vlog-section <?php echo esc_attr( $section_class ); ?>">

			<div class="container">

					<?php if( $vlog_sidebar_opts['use_sidebar'] == 'left' ): ?>
						<?php get_sidebar(); ?>
					<?php endif; ?>

					<div class="vlog-content vlog-single-content">

						<?php if( $breadcrumbs = vlog_breadcrumbs() ): ?>
							<?php echo wp_kses_post( $breadcrumbs ); ?>
						<?php endif; ?>

						<?php if( $single_cover == 'none'): ?>
							<?php get_template_part( 'template-parts/single/classic'); ?>
						<?php endif; ?>
						
						<?php get_template_part( 'template-parts/single/content'); ?>

						<?php get_template_part('template-parts/ads/below-single'); ?>

						<?php get_template_part( 'template-parts/single/prev-next'); ?>
						
						<?php if( vlog_get_option('single_author') ) : ?>
							<?php get_template_part( 'template-parts/single/author'); ?>
						<?php endif; ?>

						<?php if( vlog_get_option('single_related') ) : ?>
							<?php get_template_part( 'template-parts/single/related'); ?>
						<?php endif; ?>

						<?php comments_template(); ?>

					</div>

					<?php if( $vlog_sidebar_opts['use_sidebar'] == 'right' ): ?>
						<?php get_sidebar(); ?>
					<?php endif; ?>

			</div>

		</div>

	</article>

<?php endwhile; ?>

<?php get_footer(); ?>