Changeset 13303 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins-2024/js/build/blocks/archive-page/render.php
- Timestamp:
- 03/11/2024 03:11:46 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins-2024/js/build/blocks/archive-page/render.php
r13250 r13303 11 11 ?> 12 12 13 <div id="primary" class="content-area"> 14 <main id="main" class="site-main" role="main"> 13 <main id="main" class="site-main alignwide" role="main"> 15 14 16 17 18 19 20 21 15 <header class="page-header"> 16 <?php 17 the_archive_title( '<h1 class="page-title">', '</h1>' ); 18 the_archive_description( '<div class="taxonomy-description">', '</div>' ); 19 ?> 20 </header><!-- .page-header --> 22 21 23 24 25 26 22 <?php 23 /* Start the Loop */ 24 while ( $wp_query->have_posts() ) { 25 the_post(); 27 26 28 29 27 get_template_part( 'template-parts/plugin' ); 28 } 30 29 31 32 33 30 if ( ! have_posts() ) { 31 get_template_part( 'template-parts/no-results' ); 32 } 34 33 35 34 the_posts_pagination(); 36 35 37 36 ?> 38 37 39 </main><!-- #main --> 40 </div><!-- #primary --> 38 </main><!-- #main -->
Note: See TracChangeset
for help on using the changeset viewer.