/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

  1. <?php
  2. /**
  3. * Split topic page
  4. *
  5. * @package bbPress
  6. * @subpackage Theme
  7. */
  8. get_header();
  9. st_before_content($columns='');
  10. do_action( 'bbp_template_notices' );
  11. ?>
  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
  20. st_after_content();
  21. // get_sidebar('bbpress');
  22. get_footer();
  23. ?>