Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save carlaizumibamford/b2355ca441f059b2c92e3f9a0b6a8fad to your computer and use it in GitHub Desktop.
Save carlaizumibamford/b2355ca441f059b2c92e3f9a0b6a8fad to your computer and use it in GitHub Desktop.
<?php
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
echo '</ul>';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment