Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active June 15, 2020 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/b1c06bfae188a785e7be56e364fe2978 to your computer and use it in GitHub Desktop.
Save mgibbs189/b1c06bfae188a785e7be56e364fe2978 to your computer and use it in GitHub Desktop.
FacetWP - sort options to include multiple fields
<?php
add_filter( 'facetwp_sort_options', function( $options, $params ) {
$options['points_desc'] = [
'label' => 'Points (Highest)',
'query_args' => [
'orderby' => [ 'date' => 'ASC', 'meta_value_num' => 'DESC' ],
'meta_key' => 'points'
]
];
return $options;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment