Modify Search API sort order in Drupal using a hook

Written by

in

If you need to change the sort order of the Drupal 7 Search API using code, here is an example using hook_search_api_query_alter:

function MYMODULE_search_api_query_alter(SearchApiQueryInterface $query) {
    $query->sort('my_field_name', 'DESC');
}

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *