Skip to content

Instantly share code, notes, and snippets.

@davidmaneuver
Created November 9, 2018 08:41
Show Gist options
  • Save davidmaneuver/0be565527f16037b02c260716623d309 to your computer and use it in GitHub Desktop.
Save davidmaneuver/0be565527f16037b02c260716623d309 to your computer and use it in GitHub Desktop.
<?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