Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /**
  2. * custom sort order for a facet, this orders by facet_display_value but facet_value could also be used
  3. **/
  4. add_filter( 'facetwp_facet_orderby', function( $orderby, $facet ) {
  5. if ( 'colors' == $facet['name'] ) { // change colors to the name of the facet
  6. $orderby = "FIELD(f.facet_display_value, 'Blue','Green','Red', 'Gray')";
  7. }
  8. return $orderby;
  9. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement