Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created January 6, 2020 15:48
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/034da1083c0b9e2fbb8d4eb2f100d000 to your computer and use it in GitHub Desktop.
Save mgibbs189/034da1083c0b9e2fbb8d4eb2f100d000 to your computer and use it in GitHub Desktop.
FacetWP - order by display value numerically
<?php
// Add the following to your (child) theme's functions.php
add_filter( 'facetwp_facet_orderby', function( $orderby, $facet ) {
if ( 'size_women' == $facet['name'] ) {
$orderby = 'f.facet_display_value+0 ASC';
}
return $orderby;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment