full width template

This commit is contained in:
James Koster 2014-08-22 19:29:14 +01:00
parent a9d17499cb
commit 83c5e97086

View file

@ -14,13 +14,17 @@ get_header(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
do_action( 'storefront_page_before' );
?>
<?php get_template_part( 'content', 'page' ); ?>
<?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;
/**
* @hooked storefront_display_comments - 10
*/
do_action( 'storefront_page_after' );
?>
<?php endwhile; // end of the loop. ?>