Skip to content

Instantly share code, notes, and snippets.

@machouinard
Created August 11, 2016 23:51
Show Gist options
  • Save machouinard/4fb1dd2bcd64b1753ebe330297c7117b to your computer and use it in GitHub Desktop.
Save machouinard/4fb1dd2bcd64b1753ebe330297c7117b to your computer and use it in GitHub Desktop.
FacetWP - sort by rating
<?php
function my_facetwp_sort_options( $options, $params ) {
$options['rating'] = array(
'label' => 'Rating',
'query_args' => array(
'orderby' => 'meta_value_num', // sort by numerical custom field
'meta_key' => 'rating', // required when sorting by custom fields
'order' => 'DESC', // descending order
)
);
return $options;
}
add_filter( 'facetwp_sort_options', 'my_facetwp_sort_options', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment