Ticket #6141: 6141.diff
File 6141.diff, 3.4 KB (added by , 3 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/archive.php
17 17 18 18 <?php if ( ! is_post_type_archive( Registrations::get_post_type() ) ) : ?> 19 19 <header class="page-header"> 20 <h 1 class="page-title"><?php the_archive_title(); ?></h1>20 <h2 class="page-title"><?php the_archive_title(); ?></h2> 21 21 </header><!-- .page-header --> 22 22 <?php endif; ?> 23 23 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/author.php
17 17 <?php if ( have_posts() ) : ?> 18 18 19 19 <header class="page-header"> 20 <h 1class="page-title">20 <h2 class="page-title"> 21 21 <?php 22 22 printf( 23 23 /* translators: Search query. */ … … 29 29 ) 30 30 ); 31 31 ?> 32 </h 1>32 </h2> 33 33 </header><!-- .page-header --> 34 34 35 35 <?php -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/header.php
33 33 <div id="content" class="site-content"> 34 34 <header id="masthead" class="site-header <?php echo $show_full_header ? 'home' : ''; ?>" role="banner"> 35 35 <div class="site-branding"> 36 <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php echo esc_html_x( 'Photos', 'Site title', 'wporg-photos' ); ?></a></h1> 37 36 38 <?php if ( $show_full_header ) : ?> 37 <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php echo esc_html_x( 'Photos', 'Site title', 'wporg-photos' ); ?></a></h1>38 39 39 <p class="site-description"> 40 40 <?php 41 41 $photo_count = get_photos_count(); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/search.php
17 17 <?php if ( have_posts() ) : ?> 18 18 19 19 <header class="page-header"> 20 <h 1class="page-title">20 <h2 class="page-title"> 21 21 <?php 22 22 printf( 23 23 /* translators: Search query. */ … … 25 25 '<strong>' . sanitize_text_field( get_search_query( false ) ) . '</strong>' 26 26 ); 27 27 ?> 28 </h 1>28 </h2> 29 29 </header><!-- .page-header --> 30 30 31 31 <?php … … 42 42 <section class="no-results not-found"> 43 43 44 44 <header class="page-header"> 45 <h 1class="page-title">45 <h2 class="page-title"> 46 46 <?php _e( 'Nothing Found', 'wporg-photos' ); ?> 47 </h 1>47 </h2> 48 48 </header> 49 49 50 50 <p><?php _e( 'Sorry, but nothing matched your search terms.', 'wporg-photos' ); ?></p>