Skip to content

Instantly share code, notes, and snippets.

@sanjayatony
Last active November 3, 2020 12:41
Show Gist options
  • Save sanjayatony/2684b1654174d6cad7b2f9f177b0759c to your computer and use it in GitHub Desktop.
Save sanjayatony/2684b1654174d6cad7b2f9f177b0759c to your computer and use it in GitHub Desktop.
WP Query
<?php
$the_query = new WP_Query( $args );
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
}
wp_reset_postdata();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment