Files
car-t-t/archive.php
T

23 lines
779 B
PHP

<?php
/** Archive template. @package Fragrance_Trade */
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
?>
<main id="primary" class="site-main container py-5 fragrance-content-area">
<header class="page-header mb-5"><h1 class="page-title"><?php the_archive_title(); ?></h1><?php the_archive_description( '<div class="archive-description">', '</div>' ); ?></header>
<?php if ( have_posts() ) : ?>
<div class="row g-5">
<?php while ( have_posts() ) : the_post(); ?>
<div class="col-12"><?php get_template_part( 'template-parts/content', get_post_type() ); ?></div>
<?php endwhile; ?>
</div>
<?php the_posts_pagination(); ?>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main>
<?php get_footer(); ?>