Skip to content

Instantly share code, notes, and snippets.

@andrewmcnaughton
Last active May 2, 2018 14:34
Show Gist options
  • Save andrewmcnaughton/ce1cc30ced1e548819ad2218177edbb5 to your computer and use it in GitHub Desktop.
Save andrewmcnaughton/ce1cc30ced1e548819ad2218177edbb5 to your computer and use it in GitHub Desktop.
add_filter( 'facetwp_facet_orderby', function( $orderby, $facet ) {
if ( 'trajects' == $facet['name'] ) {
$ordered_terms = '"traject-4", "traject-3", "traject-2", "traject-1"';
$orderby = 'FIELD(f.facet_value, $ordered_terms)';
}
return $orderby;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment