Server IP : 170.150.155.74 / Your IP : 3.14.8.188 Web Server : Apache/2.4.53 (Debian) System : Linux b22bf132354b 5.4.0-162-generic #179-Ubuntu SMP Mon Aug 14 08:51:31 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/twentytwenty/template-parts/ |
Upload File : |
<?php /** * The template for displaying Author info * * @package WordPress * @subpackage Twenty_Twenty * @since Twenty Twenty 1.0 */ if ( (bool) get_the_author_meta( 'description' ) && (bool) get_theme_mod( 'show_author_bio', true ) ) : ?> <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; ?>