Creating a custom user dashboard for bbPress forums helps users easily track their posts, topics, and activity. Here’s how you can display a user’s forum activity on their dashboard:
<?php
function bbpress_user_dashboard() {
if ( is_user_logged_in() ) {
$current_user = wp_get_current_user();
$user_posts = get_posts( array( 'author' => $current_user->ID, 'post_type' => 'forum' ) );
echo '<h2>Your Forum Activity</h2><ul>';
foreach ( $user_posts as $post ) {
echo '<li>' . $post->post_title . '</li>';
}
echo '</ul>';
}
}
add_shortcode( 'bbpress_user_dashboard', 'bbpress_user_dashboard' );
?>
To display the user dashboard on any page, simply use the shortcode: [bbpress_user_dashboard].





















