[ Index ]

PHP Cross Reference of BBPress

title

Body

[close]

/src/templates/default/extras/ -> page-front-topics.php (source)

   1  <?php
   2  
   3  /**
   4   * Template Name: bbPress - Topics (Newest)
   5   *
   6   * @package bbPress
   7   * @subpackage Theme
   8   */
   9  
  10  get_header(); ?>
  11  
  12      <?php do_action( 'bbp_before_main_content' ); ?>
  13  
  14      <?php do_action( 'bbp_template_notices' ); ?>
  15  
  16      <?php while ( have_posts() ) : the_post(); ?>
  17  
  18          <div id="topics-front" class="bbp-topics-front">
  19              <h1 class="entry-title"><?php the_title(); ?></h1>
  20              <div class="entry-content">
  21  
  22                  <?php the_content(); ?>
  23  
  24                  <?php bbp_get_template_part( 'content', 'archive-topic' ); ?>
  25  
  26              </div>
  27          </div><!-- #topics-front -->
  28  
  29      <?php endwhile; ?>
  30  
  31      <?php do_action( 'bbp_after_main_content' ); ?>
  32  
  33  <?php get_sidebar(); ?>
  34  <?php get_footer();


Generated: Fri Mar 29 01:00:56 2024 Cross-referenced by PHPXref 0.7.1