Back compat for twentyeleven. Props duck_. fixes #19504
git-svn-id: http://svn.automattic.com/wordpress/trunk@19584 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ebdf78f0e2
commit
6e8e8298d0
|
@ -51,7 +51,7 @@
|
|||
?>
|
||||
<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
|
||||
<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?>
|
||||
<?php if ( get_the_author_meta( 'description' ) && ( ! function_exists( 'is_multi_author' ) || is_multi_author() ) ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?>
|
||||
<div id="author-info">
|
||||
<div id="author-avatar">
|
||||
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyeleven_author_bio_avatar_size', 68 ) ); ?>
|
||||
|
|
Loading…
Reference in New Issue