Sort by date automatically
-
Hello and thank you for this fine product, I’ve been able to tweak and customize it to my needs perfectly so far. But what I don’t get to work is sorting my filters automatically by date. I have this in my functions.php:
// === Standardmäßig nach Datum sortieren (neueste zuerst) ===
function ymc_set_default_order($args) {
$args[‘orderby’] = ‘date’;
$args[‘order’] = ‘DESC’;
return $args;
}
add_filter(‘ymc_filter_query_args_1261_1’, ‘ymc_set_default_order’);
add_filter(‘ymc_filter_query_args_1273_1’, ‘ymc_set_default_order’);
add_filter(‘ymc_filter_query_args_1349_1’, ‘ymc_set_default_order’);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Sort by date automatically’ is closed to new replies.