Current File : /home/pacjaorg/wpt.pacja.org/grants -mzee/wp-content/themes/forest-nature/single.php |
<?php
/**
* The template for displaying all single posts
*
* @subpackage Forest Nature
* @since 1.0
*/
get_header(); ?>
<?php
$forest_nature_post_sidebar = get_option( 'forest_nature_single_post_sidebar' );
if ( '1' == $forest_nature_post_sidebar ) {
$forest_nature_column = 'col-lg-12 col-md-12';
} else {
$forest_nature_column = 'col-lg-8 col-md-8';
}
?>
<main id="content" class="mt-5">
<div class="container">
<div class="content-area entry-content">
<div id="main" class="site-main" role="main">
<div class="row m-0">
<div class="content_area <?php echo esc_html( $forest_nature_column ); ?>">
<section id="post_section">
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/single-page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
the_post_navigation( array(
'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'forest-nature' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'forest-nature' ) . '</span>',
'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'forest-nature' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'forest-nature' ) . '</span> ',
) );
endwhile; // End of the loop.
?>
</section>
</div>
<?php if ( '1' != $forest_nature_post_sidebar ) {?>
<div id="sidebar" class="col-lg-4 col-md-4"><?php dynamic_sidebar('sidebar-1'); ?></div>
<?php } ?>
</div>
</div>
</div>
</div>
</main>
<?php get_footer();