?
<?php /** * The template for displaying archive pages. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ get_header(); ?> <?php if ( astra_page_layout() == 'left-sidebar' ) : ?> <?php get_sidebar(); ?> <?php endif ?> <div id="primary" <?php astra_primary_class(); ?>> <?php astra_primary_content_top(); ?> <?php astra_archive_header(); ?> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <?php ;/* Start the Loop */ ?> <?php astra_content_while_before(); ?> <div class="ast-row"> <?php while ( have_posts() ) : the_post(); ?> <?php /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'template-parts/content', astra_get_post_format() ); ?> <?php endwhile; ?> </div> <?php astra_content_while_after(); ?> <?php else : ?> <?php get_template_part( 'template-parts/content', 'none' ); ?> <?php endif; ?> </main><!-- #main --> <?php astra_pagination(); ?> <?php astra_primary_content_bottom(); ?> </div><!-- #primary --> <?php if ( astra_page_layout() == 'right-sidebar' ) : ?> <?php get_sidebar(); ?> <?php endif ?> <?php get_footer(); ?>