Skip to content

Instantly share code, notes, and snippets.

@sachyya
Created March 20, 2025 07:23
Show Gist options
  • Save sachyya/5f63af0a667cafb2de45acf85423dcf4 to your computer and use it in GitHub Desktop.
Save sachyya/5f63af0a667cafb2de45acf85423dcf4 to your computer and use it in GitHub Desktop.
Sorting facets/refinments lists
<?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