Sort by highest rated

You can sort your results to display the highest rated elements first!

Create an Element Query just as you normally would, then pass the Element Query into the sort method.

{% set hotels = craft.entries.section('hotels') %}

{% do craft.starRatings.sort(hotels) %}

If you want to sort by a specific key, simply add it as the second parameter...

{% do craft.starRatings.sort(hotels, 'comfortable') %}

Ratings can be assigned to any valid element type, whether it's native or 3rd party.