# bbp-core/2.4.3/templates/user-topics-created.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.3. 39 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.3/code/templates/user-topics-created.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.3/raw/templates/user-topics-created.php
- Modified: 2026-02-13T13:50:44+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.3/code/templates/user-topics-created.php#L10-L20`.

```php
<?php

/**
 * User Topics Created
 *
 * @package bbPress
 * @subpackage Theme
 */

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

do_action( 'bbp_template_before_user_topics_created' ); ?>

<div id="bbp-user-topics-started" class="bbp-user-topics-started">

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

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

		<?php if ( bbp_get_user_topics_started( array( 'posts_per_page' => 10 ) ) ) : ?>
			<!-- // <?php //bbp_get_template_part( 'pagination', 'topics' ); ?> -->

			<?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-topics-started -->

<?php do_action( 'bbp_template_after_user_topics_created' );

```
