Sort Individual Feeds
-
Hi, I was provided the following code to place in theme function file to sort ascending and show future posts:
add_filter( ‘wprss_display_feed_items_query’, ‘my_show_future_posts’, 10, 2 );
function my_show_future_posts( $args, $settings ) {
$args[‘order’] = ‘ASC’; // Reverses the sort order
$args[‘post_status’] = array(‘publish’, ‘future’);return $args;
}My question is, there is one specific feed I want to sort descending. How can I specify the one feed to sort descending, while having the other sort ascending?
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Sort Individual Feeds’ is closed to new replies.