Merge pull request #1080 from fullyint/loop-template-custom

Initiate the loop for template-custom.php
This commit is contained in:
Ben Word
2014-07-07 16:13:48 -05:00

View File

@@ -4,5 +4,7 @@ Template Name: Custom Template
*/
?>
<?php get_template_part('templates/page', 'header'); ?>
<?php get_template_part('templates/content', 'page'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('templates/page', 'header'); ?>
<?php get_template_part('templates/content', 'page'); ?>
<?php endwhile; ?>