Skip to content

Commit

Permalink
Fix missing close link
Browse files Browse the repository at this point in the history
  • Loading branch information
dshanske committed Dec 9, 2018
1 parent a77bb98 commit 34ad27c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template-parts/biography.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
*/
$author_bio_avatar_size = apply_filters( 'twentysixteen_author_bio_avatar_size', 42 );

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

<div class="author-description">
<h2 class="author-title">
<a class="p-name u-url author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>"><?php echo get_the_author(); ?></span></h2>
<a class="p-name u-url author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>"><?php echo get_the_author(); ?></a></h2>

<p class="author-bio">
<?php the_author_meta( 'description' ); ?>
Expand Down

0 comments on commit 34ad27c

Please sign in to comment.