Make WordPress Core


Ignore:
Timestamp:
12/14/2018 09:50:16 PM (6 years ago)
Author:
desrosj
Message:

Twenty Nineteen: Fixes and improvements.

This commit brings over several changes that occurred upstream in the theme’s GitHub repository into core.

Props khleomix, grapplerulrich, iCaleb, kjellr, allancole.

See #45424.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.0/src/wp-content/themes/twentynineteen/template-parts/post/author-bio.php

    r44196 r44199  
    1111<div class="author-bio">
    1212    <h2 class="author-title">
    13         <?php /* translators: %s: author name */ ?>
    14         <span class="author-heading"><?php echo esc_html( sprintf( __( 'Published by %s', 'twentynineteen' ), get_the_author() ) ); ?></span>
     13        <span class="author-heading">
     14            <?php
     15            printf(
     16            /* translators: %s: post author */
     17                __( 'Published by %s', 'twentynineteen' ),
     18                esc_html( get_the_author() )
     19            );
     20            ?>
     21        </span>
    1522    </h2>
    1623    <p class="author-description">
Note: See TracChangeset for help on using the changeset viewer.