This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: ASC order is not correct

#40837
Ernest MarcinkoErnest Marcinko
Keymaster

Okay, I see the issue now – the ordering there is not by date, but by ID.

To force an ordering by ID, then you may need a bit of custom code. Try adding this code to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.

add_filter("asp_query_args", "asp_order_by_id", 10, 2);
function asp_order_by_id($args, $search_id) {
	$args['post_primary_order'] = "id ASC";
	return $args;
}

This will do the trick.