Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created May 9, 2016 17:41
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/36a6036a0e3385f50b418d38e3e6e76b to your computer and use it in GitHub Desktop.
Save mgibbs189/36a6036a0e3385f50b418d38e3e6e76b to your computer and use it in GitHub Desktop.
<?php
// PUT THIS IN YOUR THEME'S FUNCTIONS.PHP
// Replace "my_facet" with your actual facet name
function facet_custom_sort( $orderby, $facet ) {
if ( 'my_facet' == $facet['name'] ) {
$orderby = 'FIELD(f.facet_display_value, "Under $50", "$50 - $75", "$75 - $100", "Over $100")';
}
return $orderby;
}
add_filter( 'facetwp_facet_orderby', 'facet_custom_sort', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment