Random Order for a number of recent posts
-
What I’m try to do is display randomly 3 posts from the most 20 recent posts in a post type called movies, how can i achieve this?
I’m at this point so far:
<?php $args = array( 'post_type'=> 'movies', 'orderby'=> 'rand', 'posts_per_page' => 3); query_posts( $args ); while ( have_posts() ) : the_post();{?>
I’m thankful for any advice or tip.
- The topic ‘Random Order for a number of recent posts’ is closed to new replies.