HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/shaan/template-parts/biography.php
<?php
/**
 * The template part for displaying an Author biography
 *
 * @since Shaan 2.0
 */
?>

<?php
/**
 * Shaan Layout Options
 */
$shaan_authorbio    =   get_theme_mod( 'shaan_author_bio' );
if (! $shaan_authorbio ) return;
?>


<div class="entry-author-info clearfix">
	<div class="author-avatar">
		<?php
		/**
		* Filter the Shaan author bio avatar size.
		*
		* @since Shaan 2.0
		*
		* @param int $size The avatar height and width size in pixels.
		*/

		$author_bio_avatar_size = apply_filters( 'shaan_author_bio_avatar_size', 80 );

		echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
		?>
	</div><!-- .author-avatar -->

	<div class="author-description">
		<p class="author-title">
			<?php echo get_the_author_posts_link(); ?>
		</p>
		<p class="author-bio">
			<?php the_author_meta( 'description' ); ?>
		</p><!-- .author-bio -->
	</div><!-- .author-description -->
</div><!-- .author-info -->