Changeset 6284 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/index.php
- Timestamp:
- 12/18/2017 05:42:35 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/index.php
r3193 r6284 15 15 namespace WordPressdotorg\Plugin_Directory\Theme; 16 16 17 get_header(); ?> 17 get_header(); 18 ?> 18 19 19 20 <main id="main" class="site-main" role="main"> 20 21 21 22 <?php 22 23 24 ?>23 if ( have_posts() ) : 24 if ( is_home() && ! is_front_page() ) : 25 ?> 25 26 <header> 26 27 <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1> 27 28 </header> 29 <?php 30 endif; 28 31 29 <?php 30 endif; 32 /* Start the Loop */ 33 while ( have_posts() ) : 34 the_post(); 31 35 32 /* Start the Loop */ 33 while ( have_posts() ) : 34 the_post(); 36 get_template_part( 'template-parts/plugin', 'index' ); 37 endwhile; 35 38 36 get_template_part( 'template-parts/plugin', 'index' ); 37 endwhile; 38 39 the_posts_pagination(); 39 the_posts_pagination(); 40 40 41 41 else :
Note: See TracChangeset
for help on using the changeset viewer.