Changeset 44149 for trunk/src/wp-content/themes/twentynineteen/archive.php
- Timestamp:
- 12/14/2018 02:32:33 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/5.0 merged: 43808,43821,43842,43860,43892,43904,43909,43926-43929,43956,43961-43963
- Property svn:mergeinfo changed
-
trunk/src/wp-content/themes/twentynineteen/archive.php
r43808 r44149 7 7 * @package WordPress 8 8 * @subpackage Twenty_Nineteen 9 * @since 1.0.0 9 10 */ 10 11 … … 12 13 ?> 13 14 14 < divid="primary" class="content-area">15 <section id="primary" class="content-area"> 15 16 <main id="main" class="site-main"> 16 17 … … 20 21 <?php 21 22 the_archive_title( '<h1 class="page-title">', '</h1>' ); 22 the_archive_description( '<div class="page-description">', '</div>' ); 23 // Remove for now @TODO 24 // the_archive_description( '<div class="page-description">', '</div>' ); 23 25 ?> 24 26 </header><!-- .page-header --> … … 34 36 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 35 37 */ 36 get_template_part( 'template-parts/content/content' );38 get_template_part( 'template-parts/content/content', 'excerpt' ); 37 39 38 40 // End the loop. … … 44 46 // If no content, include the "No posts found" template. 45 47 else : 46 get_template_part( 'template-parts/content ', 'none' );48 get_template_part( 'template-parts/content/content', 'none' ); 47 49 48 50 endif; 49 51 ?> 50 51 </main><!-- .site-main --> 52 </div><!-- .content-area --> 52 </main><!-- #main --> 53 </section><!-- #primary --> 53 54 54 55 <?php
Note: See TracChangeset
for help on using the changeset viewer.