Change Video Display Order

Discussion in 'VideoCraft WordPress Theme' started by amaconline, Feb 2, 2014.

  1. amaconline

    amaconline Member

    Joined:
    Feb 17, 2013
    Messages:
    217
    Likes Received:
    6
    Hi, I am trying to code to display the video in order. I have for example a list of videos display in the opposite order (i.e. 3....2...1). What I would like is to display them as 1..2..3. I am trying to do it by editing the:
    taxonomy-video_cat.php

    I would appreciate your guidance.

    Thanks
     
  2. Gourav

    Gourav Support Staff

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

    Go to template-video-listing.php present in your theme directory and replace current code

    Code:
    query_posts("post_type=$post_type&showposts=$limit&paged=$paged"); 
    With code given below

    Code:
     query_posts("post_type=$post_type&showposts=$limit&paged=$paged&order=ASC");
    Check image for reference
    2014-02-03_1735.png


    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     

Share This Page