PluginProbe
bbPress / 2.2.1
bbPress v2.2.1
2.6.17 trunk 2.0 2.0-beta-1 2.0-beta-2b 2.0-beta-3 2.0-beta-3b 2.0-rc-2 2.0-rc-3 2.0-rc-4 2.0-rc-5 2.0.1 2.0.2 2.0.3 2.1 2.1-beta-1 2.1-rc1 2.1-rc2 2.1-rc3 2.1-rc4 2.1.1 2.1.2 2.1.3 2.2 2.2.1 All 72 releases
bbpress / templates / default / extras / page-front-forums.php

page-front-forums.php in bbPress 2.2.1, at templates/default/extras/page-front-forums.php

35 lines 658 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Template Name: bbPress - Forums (Index)
5 *
6 * @package bbPress
7 * @subpackage Theme
8 */
9
10 get_header(); ?>
11
12 <?php do_action( 'bbp_before_main_content' ); ?>
13
14 <?php do_action( 'bbp_template_notices' ); ?>
15
16 <?php while ( have_posts() ) : the_post(); ?>
17
18 <div id="forum-front" class="bbp-forum-front">
19 <h1 class="entry-title"><?php the_title(); ?></h1>
20 <div class="entry-content">
21
22 <?php the_content(); ?>
23
24 <?php bbp_get_template_part( 'content', 'archive-forum' ); ?>
25
26 </div>
27 </div><!-- #forum-front -->
28
29 <?php endwhile; ?>
30
31 <?php do_action( 'bbp_after_main_content' ); ?>
32
33 <?php get_sidebar(); ?>
34 <?php get_footer(); ?>
35