Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi, the ads are sorted by creation date and is featured flag, if you want to change that you can add following code to your theme functions.php it will sort ads by title.

    add_filter("adverts_list_query", "sort_ads_by_title");
    function sort_ads_by_title( $args ) {
        $args['orderby'] = array( 'menu_order' => 'DESC', 'title' => 'ASC' );
        return $args;
    }
Viewing 1 replies (of 1 total)

The topic ‘Sort Order – alphabetical’ is closed to new replies.