web/wp-content/plugins/bbpress/templates/default/bbpress/content-archive-forum.php
equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 /** |
|
4 * Archive Forum Content Part |
|
5 * |
|
6 * @package bbPress |
|
7 * @subpackage Theme |
|
8 */ |
|
9 |
|
10 ?> |
|
11 |
|
12 <div id="bbpress-forums"> |
|
13 |
|
14 <?php bbp_breadcrumb(); ?> |
|
15 |
|
16 <?php do_action( 'bbp_template_before_forums_index' ); ?> |
|
17 |
|
18 <?php if ( bbp_has_forums() ) : ?> |
|
19 |
|
20 <?php bbp_get_template_part( 'loop', 'forums' ); ?> |
|
21 |
|
22 <?php else : ?> |
|
23 |
|
24 <?php bbp_get_template_part( 'feedback', 'no-forums' ); ?> |
|
25 |
|
26 <?php endif; ?> |
|
27 |
|
28 <?php do_action( 'bbp_template_after_forums_index' ); ?> |
|
29 |
|
30 </div> |