PageRenderTime 35ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/plugins/bbpress/templates/default/extras/single-topic-split.php

https://github.com/bfay/maniacal-kitten
PHP | 32 lines | 15 code | 11 blank | 6 comment | 1 complexity | aca37459cad431164baae4545c05122d MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-3.0, LGPL-2.1
  1. <?php
  2. /**
  3. * Split topic page
  4. *
  5. * @package bbPress
  6. * @subpackage Theme
  7. */
  8. get_header(); ?>
  9. <?php do_action( 'bbp_before_main_content' ); ?>
  10. <?php do_action( 'bbp_template_notices' ); ?>
  11. <?php while ( have_posts() ) : the_post(); ?>
  12. <div id="bbp-edit-page" class="bbp-edit-page">
  13. <h1 class="entry-title"><?php the_title(); ?></h1>
  14. <div class="entry-content">
  15. <?php bbp_get_template_part( 'form', 'topic-split' ); ?>
  16. </div>
  17. </div><!-- #bbp-edit-page -->
  18. <?php endwhile; ?>
  19. <?php do_action( 'bbp_after_main_content' ); ?>
  20. <?php get_sidebar(); ?>
  21. <?php get_footer(); ?>