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 / single-topic-split.php

single-topic-split.php in bbPress 2.2.1, at templates/default/extras/single-topic-split.php

33 lines 603 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Split topic page
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="bbp-edit-page" class="bbp-edit-page">
19 <h1 class="entry-title"><?php the_title(); ?></h1>
20 <div class="entry-content">
21
22 <?php bbp_get_template_part( 'form', 'topic-split' ); ?>
23
24 </div>
25 </div><!-- #bbp-edit-page -->
26
27 <?php endwhile; ?>
28
29 <?php do_action( 'bbp_after_main_content' ); ?>
30
31 <?php get_sidebar(); ?>
32 <?php get_footer(); ?>
33