Hi, is it possible to play a random video on the homepage. At this moment only the last uploaded video is shown. Greetz...
Hello, Go to front-page.php present in your theme directory and replace current code Code: query_posts( array( 'posts_per_page' => 3,'post_type' => 'video_listing', 'video_cat' => "$term->name") ); With code given below Code: query_posts( array( 'posts_per_page' => 3,'post_type' => 'video_listing','orderby' => 'rand', 'order' => 'DESC' , 'video_cat' => "$term->name") ); Check image for reference This will solve your issue. Thanks & Regards Gourav Shrivastava
Thanks for your quick reply, but adding : query_posts( array( 'posts_per_page' => 3,'post_type' => 'video_listing','orderby' => 'rand', 'order' => 'DESC' , 'video_cat' => "$term->name") ); still gives only one video. This is now not the latest upload, but just one of the videos.