Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created August 18, 2017 16:03
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 djrmom/d4654a8f1cf443ea5150049dd06deb2c to your computer and use it in GitHub Desktop.
Save djrmom/d4654a8f1cf443ea5150049dd06deb2c to your computer and use it in GitHub Desktop.
facetwp custom sort facet
/**
* custom sort order for a facet, this orders by facet_display_value but facet_value could also be used
**/
add_filter( 'facetwp_facet_orderby', function( $orderby, $facet ) {
if ( 'colors' == $facet['name'] ) { // change colors to the name of the facet
$orderby = "FIELD(f.facet_display_value, 'Blue','Green','Red', 'Gray')";
}
return $orderby;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment