To display recent bbPress forum activity in your WordPress dashboard, use this snippet:
function bbpress_dashboard_activity() {
if ( class_exists( 'bbPress' ) ) {
$forums = get_posts( array( 'post_type' => 'forum', 'posts_per_page' => 5 ) );
echo '<ul>';
foreach ( $forums as $forum ) {
echo '<li>' . $forum->post_title . '</li>';
}
echo '</ul>';
}
}
add_action( 'wp_dashboard_setup', 'bbpress_dashboard_activity' );
This will show the latest forum activity on your dashboard.