HEX
Server: Apache
System: Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64
User: redpsiju (1623)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/redpsiju/public_html/wp-content/themes/vastart/template-parts/single/author.php
<?php
/**
 * Author bio template
 *
 * @package Vastart
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Get author data.
$author         = get_the_author();
$description    = get_the_author_meta( 'description' );
$url            = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );

if ( empty( $description ) ) {
	return;
}

?>

<section id="author-bio">

	<div class="author-bio__avatar">

		<a href="<?php echo esc_url( $url ); ?>" title="<?php esc_attr_e( 'Visit Author Posts', 'vastart' ); ?>" rel="author" >
			<?php

				echo wp_kses_post( get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'vastart_author_bio_avatar_size', 100 ) ) );

			?>
		</a>

	</div>

	<div class="author-bio__content">

		<h3 class="author-bio__name">
			<a href="<?php echo esc_url( $url ); ?>" title="<?php esc_attr_e( 'Visit Author Posts', 'vastart' ); ?>">
				<?php

					echo esc_html( strip_tags( $author ) );

				?>
			</a>
		</h3>

		<?php

		if ( $description ) :
		?>

			<div class="author-bio__description">
				<?php echo wp_kses_post( $description ); ?>
			</div><!-- author-bio-description -->

		<?php endif; ?>


	</div>
	
</section>