HEX
Server: Apache/2.4.65 (Debian)
System: Linux 744648315b55 6.8.0-84-generic #84-Ubuntu SMP PREEMPT_DYNAMIC Fri Sep 5 22:36:38 UTC 2025 x86_64
User: (1000)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/themes/newsmunch/single.php
<?php
/**
 * The template for displaying archive pages.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package NewsMunch
 */
get_header();
$newsmunch_hs_latest_post_title		= get_theme_mod('newsmunch_hs_latest_post_title','1');
$newsmunch_hs_latest_post_tag_meta	= get_theme_mod('newsmunch_hs_latest_post_tag_meta','1');
$newsmunch_hs_latest_post_auth_meta	= get_theme_mod('newsmunch_hs_latest_post_auth_meta','1');
$newsmunch_hs_latest_post_date_meta	= get_theme_mod('newsmunch_hs_latest_post_date_meta','1');
$newsmunch_hs_latest_post_comment_meta	= get_theme_mod('newsmunch_hs_latest_post_comment_meta','1');
$newsmunch_hs_latest_post_content_meta= get_theme_mod('newsmunch_hs_latest_post_content_meta','1');
$newsmunch_hs_latest_post_social_share= get_theme_mod('newsmunch_hs_latest_post_social_share');
$format = get_post_format() ? : 'standard';
?>
<div class="dt-container-md">
	<div class="dt-row">
		<?php if (  !is_active_sidebar( 'newsmunch-sidebar-primary' ) ): ?>
			<div class="dt-col-lg-12 content-right">
		<?php else: ?>	
			<div id="dt-main" class="dt-col-lg-8 content-right">
		<?php endif; ?>	
			<div class="post post-single">
				<?php if( have_posts() ): 
					// Start the loop.
					while( have_posts() ): the_post();
						newsmunch_set_post_view(); ?>
						<div class="post-header">
							<?php 
								if($newsmunch_hs_latest_post_title=='1'):
									newsmunch_common_post_title('h1','title dt-mt-0 dt-mb-3');
								endif;
							?>
							<ul class="meta list-inline dt-mt-0 dt-mb-0">
								<?php if($newsmunch_hs_latest_post_auth_meta=='1'): ?>
									<?php do_action('newsmunch_common_post_author'); ?>
								<?php endif; ?>
								
								<?php if($newsmunch_hs_latest_post_tag_meta=='1'): ?>
									<li class="list-inline-item">
										<?php the_category(', '); ?>
									</li>
								<?php endif; ?>

								<?php if($newsmunch_hs_latest_post_date_meta=='1'): ?>
									<li class="list-inline-item"><?php echo esc_html(get_the_date( 'F j, Y' )); ?></li>
								<?php endif; ?>
								<?php if($newsmunch_hs_latest_post_comment_meta=='1'): ?>
									<li class="list-inline-item"><i class="far fa-comments"></i> <?php echo esc_html(get_comments_number($post->ID)); ?> <?php esc_html_e('Comments','newsmunch'); ?> </li>
								<?php endif; ?>
							</ul>
						</div>
						<article class="is-single post-content clearfix post has-post-thumbnail">
							<div class="clearfix">
								<?php if ( has_post_thumbnail() ) { ?>
									<div class="featured-image">
										<?php the_post_thumbnail(); ?>
									</div>
								<?php } ?>
								<?php if($newsmunch_hs_latest_post_content_meta=='1'): ?> 
									<?php
										the_content(
											sprintf(
												__( 'Read More', 'newsmunch' ),
												'<span class="screen-reader-text">  '.esc_html(get_the_title()).'</span>'
											)
										);
									?>
								<?php endif; ?>
							</div>
							<footer class="clearfix">
								<div class="post-bottom">
									<div class="dt-row dt-d-flex dt-align-items-center">
										<div class="dt-col-md-6 dt-col-12">
											<?php if($newsmunch_hs_latest_post_social_share=='1'): ?>
												<?php newsmunch_post_sharing(); ?>
											<?php endif; ?>
										</div>
										<div class="dt-col-md-6 dt-col-12 dt-text-center dt-text-md-right">
											<div class="tags">
												<?php if($newsmunch_hs_latest_post_tag_meta=='1'): ?>
													<li class="list-inline-item">
														<?php
															if($newsmunch_hs_latest_post_tag_meta=='1'): 
																$posttags = get_the_tags();
																if($posttags){
																	foreach($posttags as $index=>$tag){
																		echo '<a href="'.esc_url(get_tag_link($tag->term_id)).'">' .$tag->name. '</a>';
																	}
																}
															endif;
														?>
													</li>
												<?php endif; ?>
											</div>
										</div>
									</div>
								</div>
							</footer>
						</article>
				<?php endwhile; // End the loop.
					endif; 
					// Author Box
					$newsmunch_hs_single_author_option	= get_theme_mod('newsmunch_hs_single_author_option','1');
					if($newsmunch_hs_single_author_option == '1'){
						get_template_part('template-parts/content','author'); 
					}
					$newsmunch_hs_single_post_nav	= get_theme_mod('newsmunch_hs_single_post_nav','1');
					if($newsmunch_hs_single_post_nav == '1'){
				?>
					<div class="dt-row nextprev-post-wrapper">
						<?php
						  the_post_navigation(array(
							'prev_text' => '<div class="nextprev-post prev"><h5 class="post-title"><i class="fas fa-angle-left"></i> %title </h5></div>',
							'next_text' => '<div class="nextprev-post prev"><h5 class="post-title"> %title <i class="fas fa-angle-right"></i></h5></div>',
							'in_same_term' => true,
						  ));
						?>
					</div>
				 <?php }
				 $newsmunch_hs_single_related_post	= get_theme_mod('newsmunch_hs_single_related_post','1');
				 if($newsmunch_hs_single_related_post == '1'){
					get_template_part('template-parts/content','related'); 
				 }
				 comments_template( '', true ); // show comments  ?>
			</div>
		</div>
		<?php get_sidebar(); ?>
	</div>
</div>
<?php get_footer(); ?>