mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 04:11:10 +01:00
b5cc5b37f7
This brings trunk’s version of Twenty Twenty in-sync with GitHub.
For a complete list of changes since [46571], see 4549fd9...dea9290
.
Props anlino, ianbelanger, poena, williampatton, collet, erikkroes, torres126, intimez, byalextran, mehidi258, swapnild, nielslange.
Fixes #48450.
Built from https://develop.svn.wordpress.org/trunk@46613
git-svn-id: http://core.svn.wordpress.org/trunk@46410 1a063a9b-81f0-0310-95a4-ce76da25c4cd
34 lines
988 B
PHP
34 lines
988 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">
|
|
<div class="author-title-wrapper">
|
|
<div class="author-avatar vcard">
|
|
<?php echo get_avatar( get_the_author_meta( 'ID' ), 160 ); ?>
|
|
</div>
|
|
<h2 class="author-title heading-size-4">
|
|
<?php
|
|
printf(
|
|
/* translators: %s: Author name */
|
|
__( 'By %s', 'twentytwenty' ),
|
|
esc_html( get_the_author() )
|
|
);
|
|
?>
|
|
</h2>
|
|
</div><!-- .author-name -->
|
|
<div class="author-description">
|
|
<?php echo wp_kses_post( wpautop( get_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 Archive <span aria-hidden="true">→</span>', 'twentytwenty' ); ?>
|
|
</a>
|
|
</div><!-- .author-description -->
|
|
</div><!-- .author-bio -->
|
|
<?php endif; ?>
|