mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-04 23:48:23 +01:00
34 lines
922 B
PHP
34 lines
922 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; ?>
|