single.php 1020 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * The template for displaying all single posts.
  4. *
  5. * @package Intergalactic 2
  6. */
  7. get_header(); ?>
  8. <div id="primary" class="content-area">
  9. <main id="main" class="site-main" role="main">
  10. <?php while ( have_posts() ) : the_post(); ?>
  11. <?php get_template_part( 'content', 'single' ); ?>
  12. <?php
  13. // If comments are open or we have at least one comment, load up the comment template
  14. if ( comments_open() || '0' != get_comments_number() ) :
  15. comments_template();
  16. endif;
  17. ?>
  18. <div class="entry-footer-wrapper">
  19. <?php intergalactic_2_author_bio(); ?>
  20. <?php the_post_navigation( array( 'prev_text' => '<span class="title">' . esc_html__( 'Previous', 'intergalactic-2' ) . '</span>%title', 'next_text' => '<span class="title">' . esc_html__( 'Next', 'intergalactic-2' ) . '</span>%title' ) ); ?>
  21. </div><!-- .entry-footer-wrapper -->
  22. <?php endwhile; // end of the loop. ?>
  23. </main><!-- #main -->
  24. </div><!-- #primary -->
  25. <?php get_sidebar(); ?>
  26. <?php get_footer(); ?>