[ad_1]
I need to change the order the filters appear in to a custom order. I saw the code supplied here: https://caf.trustyplugins.com/docs/documentation/developers/hooks-to-use/
add_filter(‘tc_caf_filter_order_by’, ‘tc_caf_function_filter_order_by’, 10);
function tc_caf_function_filter_order_by($terms) {
sort($terms);
return $terms;
}
I’m just not sure where to add it. I would appreciate the help.
