Changeset 5382 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/page-forums-sidebar.php
- Timestamp:
- 04/20/2017 12:48:20 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/page-forums-sidebar.php
r5141 r5382 3 3 * Template Name: Page with a Forums Sidebar 4 4 * 5 * @package bbPress 6 * @subpackage Theme 5 * @package WPBBP 7 6 */ 8 7 9 8 get_header(); ?> 10 9 11 <main id="main" class="site-main" role="main">10 <main id="main" class="site-main page-forums-sidebar" role="main"> 12 11 13 <div class="entry-content">14 <?php bbp_breadcrumb(); ?>12 <?php 13 while ( have_posts() ) : the_post(); 15 14 16 <?php while ( have_posts() ) : the_post(); ?> 15 get_template_part( 'template-parts/content', 'page' ); 16 endwhile; // End of the loop. 17 ?> 17 18 18 <header class="page-header"> 19 <h1 class="page-title"><?php the_title(); ?></h1> 20 </header><!-- .page-header --> 21 22 <?php the_content(); ?> 23 24 <?php endwhile; ?> 25 </div> 26 27 <?php get_sidebar(); ?> 28 </main> 19 <?php get_sidebar(); ?> 20 </main> 29 21 30 22 <?php get_footer(); ?>
Note: See TracChangeset
for help on using the changeset viewer.