reverse order

Support Area Forums Authentic reverse order

Viewing 3 posts - 1 through 3 (of 3 total)
URL to the page in question:
  • Author
    Posts
  • #7484

    I would like for the recent podcasts widget to work differently. Can the posts appear in reverse order, instead?

    I would like the oldest ones at the top.

    #7487
    Bill Robbins
    Moderator

    You can reverse the order. Here’s how:

    1. Go to the appearance section and select edit to open up the theme editor.
    2. From the list of files on your right, choose widget-podcast.php and look for this spot:
      
      $podcast_query = new WP_Query( "post_type=podcast&posts_per_page=" . $instance['number_podcasts'] );
      
    3. Replace that with this:
      
      $podcast_query = new WP_Query( "post_type=podcast&order=ASC&posts_per_page=" . $instance['number_podcasts'] );
      
    4. Save your changes.

    That will set the order to be reverse chronological. If you need anything else, just let me know,
    Bill

    #7488

    Thanks, bill. Wonderful as always.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘reverse order’ is closed to new replies.