Viewing File: /home/maglabs/exclusive/wp-content/themes/homeid/templates/post/entry-author.php
<?php
/**
* The template for displaying post author info
*/
if (!is_singular()) {
return;
}
$author_description = get_the_author_meta('description');
if (empty($author_description)) {
return;
}
?>
<div class="author-info-wrap">
<div class="author-info-inner">
<div class="author-info-avatar">
<?php
echo get_avatar(get_the_author_meta('user_email'), 100);
?>
</div>
<div class="author-info-content">
<h2 class="name"><?php the_author_posts_link(); ?></h2>
<?php if (!empty($author_description)): ?>
<div class="desc"><?php echo wp_kses_post($author_description); ?></div>
<?php endif; ?>
</div>
</div>
</div>
Back to Directory
File Manager