/skeleton/single-topic-split.php
https://github.com/ciaranmahoney/skeleton_wp · PHP · 32 lines · 16 code · 9 blank · 7 comment · 1 complexity · 3c820aea81de344ad23cdde3e1cdea6c MD5 · raw file
- <?php
- /**
- * Split topic page
- *
- * @package bbPress
- * @subpackage Theme
- */
- get_header();
- st_before_content($columns='');
- do_action( 'bbp_template_notices' );
- ?>
- <?php while ( have_posts() ) the_post(); ?>
- <div id="bbp-edit-page" class="bbp-edit-page">
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <div class="entry-content">
- <?php bbp_get_template_part( 'bbpress/form', 'topic-split' ); ?>
- </div>
- </div><!-- #bbp-edit-page -->
- <?php
- st_after_content();
- // get_sidebar('bbpress');
- get_footer();
- ?>