18 lines
308 B
PHP
18 lines
308 B
PHP
<?php
|
|
/**
|
|
Template Name: Builder Page
|
|
**/
|
|
get_header();
|
|
?>
|
|
<section id="page-builder" class="theme-builder">
|
|
<?php
|
|
the_post(); the_content();
|
|
|
|
if( $post->comment_status == 'open' ) {
|
|
comments_template( '', true ); // show comments
|
|
}
|
|
?>
|
|
</section>
|
|
<?php get_footer(); ?>
|
|
|