Sort adverts by title
-
With all the raving reviews I see of this plugin, I’m surprised no one has mentioned the inability to sort [adverts_list] output.
My client wanted to display ads sorted by title. I’m not sure how to accomplish this without changing the core code. Any idea?
For anyone else who might want this functionality:
1. Open wp-content/plugins/wpadverts/includes/shortcodes.php
2. Scroll to line 145
3. Change line 145 so it sorts the way you want.For instance, I wanted to sort by title in alphabetical order, so I changed line 145 from:
'orderby' => array( 'menu_order' => 'DESC', 'date' => 'DESC' )to
'orderby' => array( 'title' => 'ASC', 'menu_order' => 'DESC', 'date' => 'DESC' )This way, it sorts preferentially by title, then by menu order descending (newest first), then by date descending (newest first).
** Note: if you use this method to change the way items sort, your change will be overwritten every time you update the plugin, so you’ll have to make the change again. **
The topic ‘Sort adverts by title’ is closed to new replies.