web/wp-content/plugins/bbpress/templates/default/extras/single-topic-edit.php
changeset 196 5e8dcbe22c24
equal deleted inserted replaced
195:c7c0fbc09788 196:5e8dcbe22c24
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * Edit handler for topics
       
     5  *
       
     6  * @package bbPress
       
     7  * @subpackage Theme
       
     8  */
       
     9 
       
    10 get_header(); ?>
       
    11 
       
    12 	<?php do_action( 'bbp_before_main_content' ); ?>
       
    13 
       
    14 	<?php while ( have_posts() ) : the_post(); ?>
       
    15 
       
    16 		<div id="bbp-edit-page" class="bbp-edit-page">
       
    17 			<h1 class="entry-title"><?php the_title(); ?></h1>
       
    18 			<div class="entry-content">
       
    19 
       
    20 				<?php bbp_get_template_part( 'form', 'topic' ); ?>
       
    21 
       
    22 			</div>
       
    23 		</div><!-- #bbp-edit-page -->
       
    24 
       
    25 	<?php endwhile; ?>
       
    26 
       
    27 	<?php do_action( 'bbp_after_main_content' ); ?>
       
    28 
       
    29 <?php get_sidebar(); ?>
       
    30 <?php get_footer(); ?>