Topics order
Quote from bcc85 on July 9, 2020, 4:30 pmI added your code in the functions.php file of my theme to show newest posts first when displaying a topic.
But, when displaying the topics list in a forum, how to sort themĀ in order to show first the topics with the newest posts ?
I added your code in the functions.php file of my theme to show newest posts first when displaying a topic.
But, when displaying the topics list in a forum, how to sort themĀ in order to show first the topics with the newest posts ?
Quote from bcc85 on July 10, 2020, 7:25 amI found the trouble. Some days ago, I’ve added your filter :
// Show newest topics first in forum
function custom_asgarosforum_filter_get_threads_order($order) {
$order = ‘t.id DESC’;
return $order;
}
add_filter(‘asgarosforum_filter_get_threads_order’, ‘custom_asgarosforum_filter_get_threads_order’);After removing it, the topics are ordered with the newest posts first.
Perhaps, coul’d you delete this post. Thanks.
I found the trouble. Some days ago, I’ve added your filter :
// Show newest topics first in forum
function custom_asgarosforum_filter_get_threads_order($order) {
$order = ‘t.id DESC’;
return $order;
}
add_filter(‘asgarosforum_filter_get_threads_order’, ‘custom_asgarosforum_filter_get_threads_order’);
After removing it, the topics are ordered with the newest posts first.
Perhaps, coul’d you delete this post. Thanks.