107 lines
4.7 KiB
PHP
107 lines
4.7 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* The template for displaying all single posts.
|
||
|
|
*
|
||
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
|
||
|
|
*
|
||
|
|
* @package feather Lite
|
||
|
|
*/
|
||
|
|
$feather_magazine_single_breadcrumb_section = get_theme_mod('feather_magazine_single_breadcrumb_section', '1');
|
||
|
|
$feather_magazine_single_tags_section = get_theme_mod('feather_magazine_single_tags_section', '1');
|
||
|
|
$feather_magazine_authorbox_section = get_theme_mod('feather_magazine_authorbox_section', '1');
|
||
|
|
$feather_magazine_relatedposts_section = get_theme_mod('feather_magazine_relatedposts_section', '1');
|
||
|
|
|
||
|
|
get_header(); ?>
|
||
|
|
|
||
|
|
<div id="page" class="single">
|
||
|
|
<div class="content">
|
||
|
|
<!-- Start Article -->
|
||
|
|
<?php if($feather_magazine_single_breadcrumb_section == '1') { ?>
|
||
|
|
<div class="breadcrumb"><?php feather_magazine_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">
|
||
|
|
|
||
|
|
<header>
|
||
|
|
|
||
|
|
<!-- Start Title -->
|
||
|
|
<h1 class="title single-title"><?php the_title(); ?></h1>
|
||
|
|
<!-- End Title -->
|
||
|
|
<div class="post-date-feather"><?php the_time( get_option( 'date_format' ) ); ?></div>
|
||
|
|
|
||
|
|
</header>
|
||
|
|
<!-- Start Content -->
|
||
|
|
<div id="content" class="post-single-content box mark-links">
|
||
|
|
<?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', 'feather-magazine' ), 'previouspagelink' => __('Previous', 'feather-magazine' ), 'pagelink' => '%','echo' => 1 )); ?>
|
||
|
|
<?php if($feather_magazine_single_tags_section == '1') { ?>
|
||
|
|
<!-- Start Tags -->
|
||
|
|
<div class="tags"><?php the_tags('<span class="tagtext">'.__('Tags','feather-magazine').':</span>',', ') ?></div>
|
||
|
|
<!-- End Tags -->
|
||
|
|
<?php } ?>
|
||
|
|
</div><!-- End Content -->
|
||
|
|
<?php if($feather_magazine_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>'.esc_attr('Related Posts', 'feather-magazine').'</h3></div>';
|
||
|
|
$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(); ?>" id="featured-thumbnail">
|
||
|
|
<div class="featured-thumbnail">
|
||
|
|
<?php the_post_thumbnail('feather-magazine-related',array('title' => '')); ?>
|
||
|
|
<?php if (function_exists('wp_review_show_total')) wp_review_show_total(true, 'latestPost-review-wrapper'); ?>
|
||
|
|
</div>
|
||
|
|
<header>
|
||
|
|
<h4 class="title front-view-title"><?php the_title(); ?></h4>
|
||
|
|
</header>
|
||
|
|
</a>
|
||
|
|
<?php } else { ?>
|
||
|
|
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>" id="featured-thumbnail">
|
||
|
|
|
||
|
|
<header>
|
||
|
|
<h4 class="title front-view-title"><?php the_title(); ?></h4>
|
||
|
|
</header>
|
||
|
|
</a>
|
||
|
|
<?php } ?>
|
||
|
|
</article><!--.post.excerpt-->
|
||
|
|
<?php $pexcerpt++;?>
|
||
|
|
<?php } echo '</div>'; }} wp_reset_postdata(); ?>
|
||
|
|
<!-- End Related Posts -->
|
||
|
|
<?php }?>
|
||
|
|
<?php if($feather_magazine_authorbox_section == '1') { ?>
|
||
|
|
<!-- Start Author Box -->
|
||
|
|
<div class="postauthor">
|
||
|
|
<h4><?php esc_attr_e('About The Author', 'feather-magazine'); ?></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(); ?>
|