Changeset 11025 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/search.php
- Timestamp:
- 06/11/2021 05:39:41 AM (5 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/search.php
r11022 r11025 14 14 <main id="main" class="site-main" role="main"> 15 15 16 <h1><?php single_cat_title(); ?></h1>16 <h1><?php printf( __( 'Search Results for %s' ), esc_html( get_query_var( 's' ) ) ); ?></h1> 17 17 18 <div class=" three-up helphub-front-page">18 <div class="search"> 19 19 <?php 20 20 while ( have_posts() ) : … … 22 22 ?> 23 23 24 <a href="<?php echo esc_url( get_the_permalink() ); ?>" class="archive-block"> 25 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 26 <?php the_title( '<h2>', '</h2>' ); ?> 24 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 25 <a href="<?php echo esc_url( get_the_permalink() ); ?>" class="archive-block"><?php the_title( '<h2>', '</h2>' ); ?></a> 27 26 28 <?php the_excerpt(); ?> 29 </article> 30 </a> 31 27 <?php the_excerpt(); ?> 28 </article> 32 29 33 30 <?php endwhile; ?>
Note: See TracChangeset
for help on using the changeset viewer.