Make WordPress Core

Changeset 40459


Ignore:
Timestamp:
04/17/2017 10:23:25 AM (8 years ago)
Author:
swissspidy
Message:

Twenty Seventeen: Correct heading hierarchy for posts on the front page.

When the posts page is on the front page or within a front page section, the heading hierarchy for the individual post titles needs to be adjusted accordingly.

Props joedolson, celloexpressions, davidakennedy.
Fixes #40264.

Merges [40458] to the 4.7 branch.

Location:
branches/4.7
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7

  • branches/4.7/src/wp-content/themes/twentyseventeen/style.css

    r39743 r40459  
    452452}
    453453
    454 h2 {
     454h2,
     455.home.blog .entry-title {
    455456    color: #666;
    456457    font-size: 20px;
     
    31463147
    31473148    h2,
     3149    .home.blog .entry-title,
    31483150    .page .panel-content .recent-posts .entry-title {
    31493151        font-size: 26px;
  • branches/4.7/src/wp-content/themes/twentyseventeen/template-parts/post/content-audio.php

    r39146 r40459  
    3434            if ( is_single() ) {
    3535                the_title( '<h1 class="entry-title">', '</h1>' );
     36            } elseif ( is_front_page() && is_home() ) {
     37                the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
    3638            } else {
    3739                the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
  • branches/4.7/src/wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php

    r38833 r40459  
    3131        <?php endif; ?>
    3232
    33         <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
     33        <?php if ( is_front_page() && ! is_home() ) {
     34
     35            // The excerpt is being displayed within a front page section, so it's a lower hierarchy than h2.
     36            the_title( sprintf( '<h3 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' );
     37        } else {
     38            the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
     39        } ?>
    3440    </header><!-- .entry-header -->
    3541
  • branches/4.7/src/wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php

    r39072 r40459  
    3333            if ( is_single() ) {
    3434                the_title( '<h1 class="entry-title">', '</h1>' );
     35            } elseif ( is_front_page() && is_home() ) {
     36                the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
    3537            } else {
    3638                the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
  • branches/4.7/src/wp-content/themes/twentyseventeen/template-parts/post/content-image.php

    r39072 r40459  
    3333            if ( is_single() ) {
    3434                the_title( '<h1 class="entry-title">', '</h1>' );
     35            } elseif ( is_front_page() && is_home() ) {
     36                the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
    3537            } else {
    3638                the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
  • branches/4.7/src/wp-content/themes/twentyseventeen/template-parts/post/content-video.php

    r39146 r40459  
    3333            if ( is_single() ) {
    3434                the_title( '<h1 class="entry-title">', '</h1>' );
     35            } elseif ( is_front_page() && is_home() ) {
     36                the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
    3537            } else {
    3638                the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
  • branches/4.7/src/wp-content/themes/twentyseventeen/template-parts/post/content.php

    r39072 r40459  
    3434            if ( is_single() ) {
    3535                the_title( '<h1 class="entry-title">', '</h1>' );
     36            } elseif ( is_front_page() && is_home() ) {
     37                the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
    3638            } else {
    3739                the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
Note: See TracChangeset for help on using the changeset viewer.