Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 5, 2019 21:50
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 billerickson/ed560b9b72a53039be9636b9bf622341 to your computer and use it in GitHub Desktop.
Save billerickson/ed560b9b72a53039be9636b9bf622341 to your computer and use it in GitHub Desktop.
<?php
/**
* FacetWP, change sort label
*
*/
add_filter( 'facetwp_sort_options', function( $options, $params ) {
$options['default']['label'] = 'Relevance';
return $options;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment