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
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 This will solve your issue. Thanks & Regards Gourav Shrivastava