Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nhaskins/395555 to your computer and use it in GitHub Desktop.
Save nhaskins/395555 to your computer and use it in GitHub Desktop.
wordpress get most recent post by category
<?php $my_query = new WP_Query('category_name=yournamehere&posts_per_page=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<?php the_title(); ?>
<?php the_content(''); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment