Skip to content

Instantly share code, notes, and snippets.

@anandkumar
anandkumar / functions.php
Last active January 14, 2020 21:11
bbPress: Reverse forum replies order from newer to older
// Reverse forum replies order from newer to older
function custom_bbp_has_replies() {
$args['order'] = 'DESC'; // ‘ASC’ (Ascending, Default), 'DESC' (Descending)
return $args;
}
add_filter('bbp_before_has_replies_parse_args', 'custom_bbp_has_replies' );