Created
November 9, 2018 08:41
-
-
Save davidmaneuver/0be565527f16037b02c260716623d309 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() ) :?> | |
<ul> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<li><?php the_title() ?></li> | |
<?php endwhile; ?> | |
</ul> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment