HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/public_html/wp-content/themes/alone/template-parts/post/author-bio.php
<?php
/**
 * The template for displaying Author info
 *
 * @package WordPress
 * @subpackage Alone
 * @since Alone 7.0
 */

if ( 1 !== absint( alone_get_option( 'show_author_bio' ) ) ) {
	return;
}

if ( (bool) get_the_author_meta( 'description' ) ) : ?>

<div class="author-bio">
	<?php echo get_avatar( get_the_author_meta( 'ID' ), 80 ); ?>

	<h3 class="author-title"><?php echo esc_html__('By ', 'alone') . get_the_author(); ?></h3>

	<div class="author-desc"><?php echo get_the_author_meta('description') ?></div>

	<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 more posts', 'alone' ); ?>
	</a>
</div><!-- .author-bio -->
<?php endif; ?>