Arrange BBpress topics by created
Add this to a plugin or your active themes functions.php function my_custom_display_topic_index_query () { $args[‘orderby’] = ‘date’; $args[‘order’] = ‘DESC’; return $args; } add_filter(‘bbp_before_has_topics_parse_args’, ‘my_custom_display_topic_index_query’ );