PageRenderTime 38ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/single-topic-split.php

https://bitbucket.org/zamoose/elbee-elgee
PHP | 29 lines | 13 code | 10 blank | 6 comment | 1 complexity | ec9499a67363ee8447ef5b41e040f16c MD5 | raw file
Possible License(s): WTFPL, GPL-3.0
  1. <?php
  2. /**
  3. * Split topic page
  4. *
  5. * @package bbPress
  6. * @subpackage Theme
  7. */
  8. ?>
  9. <?php get_header(); ?>
  10. <?php get_template_part( 'bbp-wrapper-header' ); ?>
  11. <?php do_action( 'bbp_template_notices' ); ?>
  12. <?php while ( have_posts() ) the_post(); ?>
  13. <div id="bbp-edit-page" class="bbp-edit-page">
  14. <h1 class="entry-title"><?php the_title(); ?></h1>
  15. <div class="entry-content">
  16. <?php bbp_get_template_part( 'bbpress/form', 'topic-split' ); ?>
  17. </div>
  18. </div><!-- #bbp-edit-page -->
  19. <?php get_template_part( 'bbp-wrapper-footer' ); ?>