This should work…
function custom_bbp_has_topics() {
$args['order'] = 'ASC'; // 'ASC' (Ascending), 'DESC' (Descending, Default)
return $args;
}
add_filter('bbp_before_has_topics_parse_args', 'custom_bbp_has_topics' );
@Stephen, newbie here. How and Where to add the above code please. Thank you so much.
@batmanfan In your functions.php inside your theme should work fine. =)
Thanks! I didn’t realize my question was answered. So, are you sure adding these codes won’t break the site? Thanks, again.
@ritajoc My best advice would use it in a dev site first. Just to make sure and then, move it to the live one.