Permalink
Cannot retrieve contributors at this time
business/page-press.php
Go to file<?php | |
/** | |
Template Name: Presspage | |
* This page template is the same as Cornerstone's "blank" but with a different ID for styling. | |
*/ | |
get_header(); ?> | |
<div id="page-press"> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<?php get_template_part( 'content', 'blank' ); ?> | |
<?php | |
// If comments are open or we have at least one comment, load up the comment template | |
if ( comments_open() || '0' != get_comments_number() ) : | |
comments_template(); | |
endif; | |
?> | |
<?php endwhile; // end of the loop. ?> | |
</div> | |
<?php get_footer(); ?> |