seantrant
7/15/2016 - 4:42 PM

Page loop

Page loop

<?php
  if (have_posts()) :
     while (have_posts()) :
        the_post();
           the_content();
     endwhile;
  endif;
  ?>