Last active
December 16, 2015 04:48
-
-
Save zachary-russell/5379259 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<h2><?php the_title(); ?><h2> | |
<?php the_post_thumbnail(); ?> | |
<?php the_excerpt(); ?> | |
<?php endwhile; else: ?> | |
<p>Sorry, no posts exist</p> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment