Created
July 2, 2024 04:41
-
-
Save sachyya/e2f60f6aa7cfa96fd8428a1a4d79f5fd to your computer and use it in GitHub Desktop.
Sort results by custom field
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 | |
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