Skip to content

Instantly share code, notes, and snippets.

@sachyya
Created July 2, 2024 04:41
Show Gist options
  • Save sachyya/e2f60f6aa7cfa96fd8428a1a4d79f5fd to your computer and use it in GitHub Desktop.
Save sachyya/e2f60f6aa7cfa96fd8428a1a4d79f5fd to your computer and use it in GitHub Desktop.
Sort results by custom field
<?php
add_filter( 'cm_tsfwc_additional_search_params', 'theme_slug_alter_search_params' );
function theme_slug_alter_search_params() {
return [
'sort_by' => 'total_sales:desc', // work only with numerical fields
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment