Advertisement
daymobrew

index.php in test theme updated

Jun 9th, 2018
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php get_header(); // Moved to top ?>
  2. <?php if ( have_posts() ) { // Added ?>
  3. <?php while ( have_posts() ) { // Added ?>
  4. <?php the_post(); ?>
  5. <section class="content d-flex">
  6.     <div class="container align-self-stretch">
  7.         <div class="row h-100">
  8.             <div class="col-sm-12">
  9.                 <?php the_content();?>
  10.             </div>
  11.         </div>
  12.     </div>
  13. </section>
  14. <?php } // Added
  15. } // Added ?>
  16. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement