Files
car-t-t/page.php

15 lines
352 B
PHP

<?php
/** Page template. @package Fragrance_Trade */
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
?>
<main id="primary" class="site-main container py-5 fragrance-content-area">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'page' ); ?>
<?php endwhile; ?>
</main>
<?php get_footer(); ?>