Changeset 3193 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/page.php
- Timestamp:
- 05/20/2016 05:16:55 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
-
Property
svn:ignore
set to
node_modules
-
Property
svn:ignore
set to
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/page.php
r3009 r3193 1 1 <?php 2 /** 3 * The template for displaying all pages. 4 * 5 * This is the template that displays all pages by default. 6 * Please note that this is the WordPress construct of pages 7 * and that other 'pages' on your WordPress site may use a 8 * different template. 9 * 10 * @link https://codex.wordpress.org/Template_Hierarchy 11 * 12 * @package WordPressdotorg\Plugin_Directory\Theme 13 */ 14 2 15 namespace WordPressdotorg\Plugin_Directory\Theme; 3 16 4 get_header(); 5 ?> 17 get_header(); ?> 6 18 7 <?php the_post(); ?>19 <main id="main" class="site-main" role="main"> 8 20 9 <?php get_template_part( 'filter-bar' ); ?> 21 <?php 22 while ( have_posts() ) : the_post(); 10 23 11 <div class="wrapper"> 12 <div class="col-12" itemscope itemtype="http://schema.org/SoftwareApplication"> 13 <h2><?php the_title(); ?></h2> 14 <?php the_content(); ?> 15 </div> 16 </div> 24 get_template_part( 'template-parts/content', 'page' ); 25 endwhile; // End of the loop. 26 ?> 17 27 18 <br class="clear" /> 28 </main><!-- #main --> 29 19 30 <?php 20 31 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.