Changeset 5382 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/page.php
- Timestamp:
- 04/20/2017 12:48:20 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/page.php
r5141 r5382 5 5 * This is the template that displays all pages by default. 6 6 * Please note that this is the WordPress construct of pages 7 * and that other 'pages' on your WordPress site willuse a7 * and that other 'pages' on your WordPress site may use a 8 8 * different template. 9 9 * 10 * @package WPBBP 10 11 */ 11 12 12 13 get_header(); ?> 13 14 14 <main id="main" class="site-main" role="main">15 <main id="main" class="site-main" role="main"> 15 16 16 <div class="entry-content">17 <?php bbp_breadcrumb(); ?>17 <?php 18 while ( have_posts() ) : the_post(); 18 19 19 <?php while ( have_posts() ) : the_post(); ?> 20 get_template_part( 'template-parts/content', 'page' ); 21 endwhile; // End of the loop. 22 ?> 20 23 21 <header class="page-header"> 22 <h1 class="page-title"><?php the_title(); ?></h1> 23 </header><!-- .page-header --> 24 </main><!-- #main --> 24 25 25 <?php the_content(); ?> 26 27 <?php endwhile; ?> 28 </div> 29 30 </main> 31 32 <?php get_footer(); ?> 26 <?php 27 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.