Skip to content

Commit

Permalink
Stop opening/closing php since it’s all php
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Hortin committed May 3, 2019
1 parent 8bf89dd commit e99e2ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions template-builderblank.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
* @since Ephemeris 1.0
*/

get_header( 'blank' ); ?>
get_header( 'blank' );

<?php
if ( have_posts() ) {

// Start the Loop
Expand All @@ -22,6 +21,5 @@
} // end of the loop

} // end have_posts()
?>

<?php get_footer( 'blank' ); ?>
get_footer( 'blank' );
6 changes: 2 additions & 4 deletions template-builderfullwidth.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
* @since Ephemeris 1.0
*/

get_header(); ?>
get_header();

<?php
if ( have_posts() ) {

// Start the Loop
Expand All @@ -22,6 +21,5 @@
} // end of the loop

} // end have_posts()
?>

<?php get_footer(); ?>
get_footer();

0 comments on commit e99e2ec

Please sign in to comment.