# bbp-core/2.4.1/templates/user-engagements.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.1. 38 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.1/code/templates/user-engagements.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.1/raw/templates/user-engagements.php
- Modified: 2026-04-10T15:32:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/2.4.1/code/templates/user-engagements.php#L10-L20`.

```php
<?php

/**
 * User Engagements
 *
 * @package bbPress
 * @subpackage Theme
 */

// Exit if accessed directly
defined( 'ABSPATH' ) || exit;

do_action( 'bbp_template_before_user_engagements' ); ?>

<div id="bbp-user-engagements" class="bbp-user-engagements">

	<?php bbp_get_template_part( 'form', 'topic-search' ); ?>

	<h2 class="entry-title"><?php esc_html_e( 'Topics Engaged In', 'forumax' ); ?></h2>
	<div class="bbp-user-section">

		<?php if ( bbp_get_user_engagements() ) : ?>

			<?php bbp_get_template_part( 'loop', 'topics' ); ?>

			<?php bbp_get_template_part( 'pagination', 'topics' ); ?>

		<?php else : ?>

			<?php bbp_get_template_part( 'feedback', 'no-topics' ); ?>

		<?php endif; ?>

	</div>
</div><!-- #bbp-user-engagements -->

<?php do_action( 'bbp_template_after_user_engagements' );

```
