mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-19 05:51:55 +01:00
This brings `trunk`’s version of Twenty Twenty in-sync with GitHub.
For a complete list of changes since [46271], see 932b16248...dd7032f
Props anlino, ianbelanger, nielslange, acosmin, netweb, williampatton, adhitya03, phpdocs, acalfieri, itowhid06, littlebigthing, aristath, karmatosed, poena.
See #48110.
Built from https://develop.svn.wordpress.org/trunk@46357
git-svn-id: http://core.svn.wordpress.org/trunk@46156 1a063a9b-81f0-0310-95a4-ce76da25c4cd
34 lines
924 B
PHP
34 lines
924 B
PHP
<?php
|
|
/**
|
|
* The template for displaying Author info
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Twenty
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
if ( (bool) get_the_author_meta( 'description' ) ) : ?>
|
|
<div class="author-bio">
|
|
<h2 class="author-title heading-size-4">
|
|
<div class="author-avatar vcard">
|
|
<?php echo get_avatar( get_the_author_meta( 'ID' ), 160 ); ?>
|
|
</div>
|
|
<span class="author-name">
|
|
<?php
|
|
printf(
|
|
/* Translators: %s: post author */
|
|
esc_html__( 'By %s', 'twentytwenty' ),
|
|
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 esc_html_e( 'View Archive →', 'twentytwenty' ); ?>
|
|
</a>
|
|
</p><!-- .author-description -->
|
|
</div><!-- .author-bio -->
|
|
<?php endif; ?>
|