How to sort posts with the first 2 or 3 by latest, and the rest is random?
EDIT: Here is the correct answer… <!– RECENT BLOG POSTS –> <?php $recentargs = array( ‘post_type’ => ‘post’, ‘post_status’ => ‘publish’, ‘category_name’ => ‘social-grid’, ‘posts_per_page’ => $number_of_recent_posts, ‘orderby’ => ‘post_date’, ‘order’ => ‘DESC’ ); $rec_arr_posts = new WP_Query( $recentargs ); if ( $rec_arr_posts->have_posts() ) : while ( $rec_arr_posts->have_posts() ) : $rec_arr_posts->the_post(); ?> <?php get_the_post_thumbnail_url(); ?> … Read more