Skip to content

Instantly share code, notes, and snippets.

@pascalmaddin
Created June 23, 2014 13:16
Show Gist options
  • Save pascalmaddin/6a4c0d523b48e9a05ef6 to your computer and use it in GitHub Desktop.
Save pascalmaddin/6a4c0d523b48e9a05ef6 to your computer and use it in GitHub Desktop.
WordPress: get posts from category (including some args)
query_posts( array( 'category__and' => array($cat_id), 'posts_per_page' => 1, 'orderby' => 'rand' ) );
while (have_posts()) : the_post();
// show stuff here
endwhile;
wp_reset_query();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment