navasena/wp-content/themes/thinkai/templates/blog-single/author_box.php

10 lines
340 B
PHP
Raw Permalink Normal View History

2024-07-31 13:12:38 +07:00
<div class="author-box">
<figure>
<?php echo get_avatar( get_the_author_meta( 'ID' ), 160 ); ?>
</figure>
<div class="author-post">
<h3><?php esc_html_e( 'By', 'thinkai' ); ?><?php echo esc_html( get_the_author_meta( 'display_name' ) ); ?></h3>
<p><?php echo esc_html( get_the_author_meta( 'description' ) ); ?></p>
</div>
</div>