Forums

Random Order for a number of recent posts (1 post)

  1. boldhand
    Member
    Posted 6 months ago #

    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.

Reply

You must log in to post.

About this Topic