Created
March 20, 2025 07:23
-
-
Save sachyya/5f63af0a667cafb2de45acf85423dcf4 to your computer and use it in GitHub Desktop.
Sorting facets/refinments lists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function cm_typesense_facet_modifications( $facet_settings, $facet ) { | |
if ( $facet == 'category' ) { | |
$facet_settings = [ | |
'sortBy' = 'name:desc'; | |
]; | |
} | |
return $facet_settings; | |
} | |
add_filter( 'cm_typesense_search_facet_settings', 'cm_typesense_facet_modifications', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment