carhop__carhop-theme__DEV/front-page.php
2022-09-27 08:52:44 +00:00

18 lines
193 B
PHP
Executable File

<?php get_header(); ?>
<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post();
the_content();
?>
<?php endwhile; ?>
<?php endif; ?>
<?php
get_footer();