Changeset 11647
- Timestamp:
- 03/07/2022 11:29:44 PM (3 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/archive.php
r11459 r11647 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; ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/author.php
r11459 r11647 18 18 19 19 <header class="page-header"> 20 <h 1class="page-title">20 <h2 class="page-title"> 21 21 <?php 22 22 printf( … … 30 30 ); 31 31 ?> 32 </h 1>32 </h2> 33 33 </header><!-- .page-header --> 34 34 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/functions.php
r11553 r11647 87 87 */ 88 88 function scripts() { 89 wp_enqueue_style( 'wporg-style', get_stylesheet_directory_uri() . '/css/style.css', [ 'dashicons', 'open-sans' ], '20220 214' );89 wp_enqueue_style( 'wporg-style', get_stylesheet_directory_uri() . '/css/style.css', [ 'dashicons', 'open-sans' ], '20220303' ); 90 90 wp_style_add_data( 'wporg-style', 'rtl', 'replace' ); 91 91 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/header.php
r11552 r11647 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> 36 37 <?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 38 <p class="site-description"> 40 39 <?php … … 49 48 <?php get_search_form(); ?> 50 49 <?php else : ?> 51 <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php echo esc_html_x( 'Photos', 'Site title', 'wporg-photos' ); ?></a></p>52 53 50 <nav id="site-navigation" class="main-navigation" role="navigation"> 54 51 <button class="menu-toggle dashicons dashicons-arrow-down-alt2" aria-controls="primary-menu" aria-expanded="false" aria-label="<?php esc_attr_e( 'Primary Menu', 'wporg-photos' ); ?>"></button> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/search.php
r11459 r11647 18 18 19 19 <header class="page-header"> 20 <h 1class="page-title">20 <h2 class="page-title"> 21 21 <?php 22 22 printf( … … 26 26 ); 27 27 ?> 28 </h 1>28 </h2> 29 29 </header><!-- .page-header --> 30 30 … … 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 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts/content-page-c.php
r11459 r11647 15 15 16 16 <header class="page-header"> 17 <h 1class="page-title">17 <h2 class="page-title"> 18 18 <?php _e( 'Categories', 'wporg-photo' ); ?> 19 </h 1>19 </h2> 20 20 </header><!-- .page-header --> 21 21 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts/content-page-color.php
r11551 r11647 15 15 16 16 <header class="page-header"> 17 <h 1class="page-title">17 <h2 class="page-title"> 18 18 <?php _e( 'Colors', 'wporg-photo' ); ?> 19 </h 1>19 </h2> 20 20 21 21 <p><?php _e( 'Browse photos predominantly featuring one of these colors…', 'wporg-photos' ); ?></p> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts/content-page-orientation.php
r11459 r11647 15 15 16 16 <header class="page-header"> 17 <h 1class="page-title">17 <h2 class="page-title"> 18 18 <?php _e( 'Orientations', 'wporg-photo' ); ?> 19 </h 1>19 </h2> 20 20 21 21 <p><?php _e( 'Browse photos by orientation…', 'wporg-photos' ); ?></p> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts/content-page-submit.php
r11459 r11647 12 12 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 13 13 <header class="entry-header"> 14 <?php the_title( '<h 1 class="entry-title">', '</h1>' ); ?>14 <?php the_title( '<h2 class="entry-title">', '</h2>' ); ?> 15 15 </header><!-- .entry-header --> 16 16
Note: See TracChangeset
for help on using the changeset viewer.