File: /home/zwafgyp/coolswim/wp-content/themes/landing-pageasy/single.php
<?php
/**
* The template for displaying all single posts.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package landing Lite
*/
$landing_pageasy_single_breadcrumb_section = get_theme_mod('landing_pageasy_single_breadcrumb_section', '1');
$landing_pageasy_single_tags_section = get_theme_mod('landing_pageasy_single_tags_section', '1');
$landing_pageasy_authorbox_section = get_theme_mod('landing_pageasy_authorbox_section', '1');
$landing_pageasy_relatedposts_section = get_theme_mod('landing_pageasy_relatedposts_section', '1');
get_header(); ?>
<div id="page" class="single">
<div class="content">
<!-- Start Article -->
<?php if($landing_pageasy_single_breadcrumb_section == '0') { ?>
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php landing_pageasy_the_breadcrumb(); ?></div>
<?php } ?>
<article class="article">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
<div class="single_post">
<!-- Start Content -->
<div id="content" class="post-single-content box mark-links">
<header>
<!-- Start Title -->
<h1 class="title single-title"><?php the_title(); ?></h1>
<!-- End Title -->
<div class="post-date-landing">Posted On <?php the_time( get_option( 'date_format' ) ); ?></div>
</header>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<div class="pagination">', 'after' => '</div>', 'link_before' => '<span class="current"><span class="currenttext">', 'link_after' => '</span></span>', 'next_or_number' => 'next_and_number', 'nextpagelink' => __('Next', 'landing-pageasy' ), 'previouspagelink' => __('Previous', 'landing-pageasy' ), 'pagelink' => '%','echo' => 1 )); ?>
<?php if($landing_pageasy_single_tags_section == '1') { ?>
<!-- Start Tags -->
<div class="tags"><?php the_tags('<span class="tagtext">'.__('Tags','landing-pageasy').':</span>',', ') ?></div>
<!-- End Tags -->
<?php } ?>
</div><!-- End Content -->
<?php if($landing_pageasy_relatedposts_section == '1') { ?>
<!-- Start Related Posts -->
<?php $categories = get_the_category($post->ID);
if ($categories) { $category_ids = array();
foreach($categories as $individual_category)
$category_ids[] = $individual_category->term_id;
$args=array( 'category__in' => $category_ids,
'post__not_in' => array($post->ID),
'ignore_sticky_posts' => 1,
'showposts'=> 3,
'orderby' => 'rand' );
$my_query = new wp_query( $args ); if( $my_query->have_posts() ) {
echo '<div class="related-posts"><div class="postauthor-top"><h3>'.__('Related Posts', 'landing-pageasy').'</h3></div><div class="related-posts-wrapper">';
$pexcerpt=1; $j = 0; $counter = 0;
while( $my_query->have_posts() ) {
$my_query->the_post();?>
<article class="post excerpt <?php echo (++$j % 3== 0) ? 'last' : ''; ?>">
<?php if ( has_post_thumbnail() ) { ?>
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<div class="related-post-featured-thumbnail-container">
<div class="featured-thumbnail-overlay"></div>
<?php $featured_img_url = get_the_post_thumbnail_url(get_the_ID(),'full');
echo '<div class="related-posts-thumbnail" style="background-image:url('.esc_url($featured_img_url).')">'; ?>
<h5 class="title front-view-title"><?php the_title(); ?></h5>
<?php echo '</div>' ?>
</div>
</a>
<?php } else { ?>
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>" class="related-posts-no-img">
<h5 class="title front-view-title"><?php the_title(); ?></h5>
</a>
<?php } ?>
</article><!--.post.excerpt-->
<?php $pexcerpt++;?>
<?php } echo '</div></div>'; }} wp_reset_postdata(); ?>
<!-- End Related Posts -->
<?php }?>
<?php if($landing_pageasy_authorbox_section == '1') { ?>
<!-- Start Author Box -->
<div class="postauthor">
<h4><?php _e('About The Author', 'landing-pageasy'); ?></h4>
<?php if(function_exists('get_avatar')) { echo get_avatar( get_the_author_meta('email'), '85' ); } ?>
<h5><?php the_author(); ?></h5>
<p><?php the_author_meta('description') ?></p>
</div>
<!-- End Author Box -->
<?php }?>
<?php comments_template( '', true ); ?>
</div>
</div>
<?php endwhile; ?>
</article>
<!-- End Article -->
<!-- Start Sidebar -->
<?php get_sidebar(); ?>
<!-- End Sidebar -->
</div>
</div>
<?php get_footer(); ?>