Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/page_white.php
2022-11-08 14:50:27 +01:00

21 lines
253 B
PHP

<?php
/**
* Template Name: White Page
*/
get_header();
if (have_posts()):
while (have_posts()):
the_post();
?>
<div class="content">
<?= the_content(); ?>
</div>
<?php
endwhile;
endif;
get_footer();