Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dannomatic/1ee72232d156e29c7cdd9a15d6d97666 to your computer and use it in GitHub Desktop.
Save dannomatic/1ee72232d156e29c7cdd9a15d6d97666 to your computer and use it in GitHub Desktop.
WP Query List Posts in a Category
<?php $catquery = new WP_Query( 'cat=72&posts_per_page=5' ); ?>
<ul>
<?php while($catquery->have_posts()) : $catquery->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile;
wp_reset_postdata();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment