webworthydesign
7/7/2014 - 1:51 PM

The Loop (Shorthand)

The Loop (Shorthand)

<?php 

if (have_posts()) : 
  
  while (have_posts()) : the_post();
  
  //content here
  
  endwhile; 
  
else :
  echo '<p>No content found</p>';
  
endif;
  
?>