mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
a2845863e5
This commit brings over several changes that occurred upstream in the theme’s GitHub repository into core. - Fix the gallery caption link color. https://github.com/WordPress/twentynineteen/pull/687 - Remove left padding from pullquote blocks. https://github.com/WordPress/twentynineteen/pull/690 - Print `skip-link-focus-fix` inline instead of enqueueing as blocking script. https://github .com/WordPress/twentynineteen/pull/47 - Fix and improve some strings with placeholders. https://github.com/WordPress/twentynineteen/pull/217 - Fixes some minor code quality issues. https://github.com/WordPress/twentynineteen/pull/237 - Fix PHP Warning: Parameter must be an array or an object that implements Countable. https://github .com/WordPress/twentynineteen/pull/661 - Add missing text domain and escaping to comment author text. https://github.com/WordPress/twentynineteen/pull/274 - Remove hyphens rule for cover image text. https://github.com/WordPress/twentynineteen/pull/691 - Fix left/right-aligned pullquote spacing. https://github.com/WordPress/twentynineteen/pull/695 - Improve `readme.txt` to follow the correct standards for themes. https://github.com/WordPress/twentynineteen/issues/689 Props kjellr, allancole, dimadin, westonruter, khleomix, grapplerulrich, iCaleb, desrosj. Merges [44196], [44199], and [44201-44202] into trunk. Fixes #45424. Built from https://develop.svn.wordpress.org/trunk@44305 git-svn-id: http://core.svn.wordpress.org/trunk@44135 1a063a9b-81f0-0310-95a4-ce76da25c4cd
31 lines
778 B
PHP
31 lines
778 B
PHP
<?php
|
|
/**
|
|
* The template for displaying Author info
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Nineteen
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
if ( (bool) get_the_author_meta( 'description' ) ) : ?>
|
|
<div class="author-bio">
|
|
<h2 class="author-title">
|
|
<span class="author-heading">
|
|
<?php
|
|
printf(
|
|
/* translators: %s: post author */
|
|
__( 'Published by %s', 'twentynineteen' ),
|
|
esc_html( get_the_author() )
|
|
);
|
|
?>
|
|
</span>
|
|
</h2>
|
|
<p class="author-description">
|
|
<?php the_author_meta( 'description' ); ?>
|
|
<a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
|
|
<?php _e( 'View more posts', 'twentynineteen' ); ?>
|
|
</a>
|
|
</p><!-- .author-description -->
|
|
</div><!-- .author-bio -->
|
|
<?php endif; ?>
|