Random homepage video

Discussion in 'VideoCraft WordPress Theme' started by productvideo, Jan 22, 2014.

  1. productvideo

    productvideo New Member

    Joined:
    Jan 18, 2014
    Messages:
    8
    Likes Received:
    0
    Hi, is it possible to play a random video on the homepage. At this moment only the last uploaded video is shown.

    Greetz...
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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
    2014-01-22_1811.png



    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  3. productvideo

    productvideo New Member

    Joined:
    Jan 18, 2014
    Messages:
    8
    Likes Received:
    0
    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.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.


    Thanks & Regards
    Gourav Shrivastava
     

Share This Page