themes-wordpress/publication/single.php

38 lines
1.2 KiB
PHP
Raw Normal View History

2018-02-27 03:22:42 +00:00
<?php
/**
* The template for displaying all single posts.
*
* @package Publication
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'single' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || get_comments_number() ) {
comments_template();
}
?>
<?php
// Previous/next post navigation.
the_post_navigation( array(
'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'publication' ) . '</span> ' . '<span class="screen-reader-text">' . __( 'Next post:', 'publication' ) . '</span> ' . '<span class="post-title">%title</span>',
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'publication' ) . '</span> ' . '<span class="screen-reader-text">' . __( 'Previous post:', 'publication' ) . '</span> ' . '<span class="post-title">%title</span>',
) );
?>
<?php endwhile; // End of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>