Title: Styling and Sorting
Last modified: January 4, 2018

---

# Styling and Sorting

 *  Resolved [cetacousin](https://wordpress.org/support/users/cetacousin/)
 * (@cetacousin)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/styling-and-sorting/)
 * First all I wish to say this plugin is perfect for my needs which is to display
   all my marine parks without the need of doing much work every time i need to 
   add a new park.
 * Only thing is, is there any way I can sort the feed list alphabetically?
 * And can you css style the output?
 * Cheers
    CC
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fstyling-and-sorting%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [renzms](https://wordpress.org/support/users/renzms/)
 * (@renzms)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/styling-and-sorting/#post-9847647)
 * Hi [@cetacousin](https://wordpress.org/support/users/cetacousin/)!
 * Thanks for using the plugin and glad it suits your needs!
 * For Alphabetical sorting, please try using a filter. The argument that the **
   _wprss\_display\_feed\_items\_query_** filter receives is the same array that
   is used as a parameter to **_WP\_Query_**‘s constructor, and hence all documented
   parameters are applicable in this case.
 * You can use the following as a starting point to get you in the right direction:
 *     ```
       $args['order'] = 'ASC';
       ```
   
 * Changed to the following: (based on [https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters](https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters))
 *     ```
       $args = array(
       'orderby' => 'title',
       'order' => 'DESC',
       );
       ```
   
 * Please also see: [https://docs.wprssaggregator.com/how-to-add-actions-and-filters/](https://docs.wprssaggregator.com/how-to-add-actions-and-filters/)
 * As for styling the feeds, please see the following: [https://docs.wprssaggregator.com/styling-the-feeds/](https://docs.wprssaggregator.com/styling-the-feeds/)
 * Hope that helps!

Viewing 1 replies (of 1 total)

The topic ‘Styling and Sorting’ is closed to new replies.

 * ![](https://ps.w.org/wp-rss-aggregator/assets/icon-256x256.gif?rev=3157090)
 * [RSS Aggregator - RSS Import, News Feeds, Feed to Post, and Autoblogging](https://wordpress.org/plugins/wp-rss-aggregator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-rss-aggregator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-rss-aggregator/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-rss-aggregator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-rss-aggregator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-rss-aggregator/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [renzms](https://wordpress.org/support/users/renzms/)
 * Last activity: [8 years, 5 months ago](https://wordpress.org/support/topic/styling-and-sorting/#post-9847647)
 * Status: resolved