PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / trunk
Forumax – AI Powered Advanced Community Forum Plugin vtrunk
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / templates / user-topics-created.php

user-topics-created.php in Forumax – AI Powered Advanced Community Forum Plugin trunk, at templates/user-topics-created.php

39 lines 946 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * User Topics Created
5 *
6 * @package bbPress
7 * @subpackage Theme
8 */
9
10 // Exit if accessed directly
11 defined( 'ABSPATH' ) || exit;
12
13 do_action( 'bbp_template_before_user_topics_created' ); ?>
14
15 <div id="bbp-user-topics-started" class="bbp-user-topics-started">
16
17 <?php bbp_get_template_part( 'form', 'topic-search' ); ?>
18
19 <h2 class="entry-title"><?php esc_html_e( 'Forum Topics Started', 'forumax' ); ?></h2>
20 <div class="bbp-user-section">
21
22 <?php if ( bbp_get_user_topics_started( array( 'posts_per_page' => 10 ) ) ) : ?>
23 <!-- // <?php //bbp_get_template_part( 'pagination', 'topics' ); ?> -->
24
25 <?php bbp_get_template_part( 'loop', 'topics' ); ?>
26
27 <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
28
29 <?php else : ?>
30
31 <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?>
32
33 <?php endif; ?>
34
35 </div>
36 </div><!-- #bbp-user-topics-started -->
37
38 <?php do_action( 'bbp_template_after_user_topics_created' );
39