File: /var/www/kosmicfarmswordpress/public/wp-content/themes/organic-farm/archive.php
<?php
/**
* The template for displaying archive pages
*
* @subpackage Organic Farm
* @since 1.0
*/
get_header(); ?>
<?php
$post_sidebar = get_theme_mod( 'organic_farm_post_sidebar' );
if ( 'false' == $post_sidebar ) {
$column = 'col-lg-12 col-md-12';
} else {
$column = 'col-lg-8 col-md-8';
}
?>
<main id="content">
<div class="container">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title"><span>', '</span></h1>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );
?>
</header>
<?php endif; ?>
<div class="content-area">
<div id="main" class="site-main" role="main">
<div class="row m-0">
<div class="content_area <?php echo esc_html( $column ); ?>">
<section id="post_section">
<div class="row">
<?php
if ( have_posts() ) : ?>
<?php
while ( have_posts() ) : the_post();
$post_option = get_theme_mod( 'organic_farm_post_option','simple_post');
if($post_option == 'simple_post'){
get_template_part( 'template-parts/post/content' );
}else if($post_option == 'grid_post'){
get_template_part( 'template-parts/post/grid-content' );
}
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
</div>
<div class="navigation">
<?php
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'organic-farm' ),
'next_text' => __( 'Next page', 'organic-farm' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'organic-farm' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</section>
</div>
<?php if ( 'false' != $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();