|
@@ 78-79 (lines=2) @@
|
| 75 |
|
if ( $r->have_posts() ) { |
| 76 |
|
echo '<a href="' . get_author_posts_url( $author->ID ) . '">'; |
| 77 |
|
|
| 78 |
|
if ( $instance['avatar_size'] > 1 ) |
| 79 |
|
echo ' ' . get_avatar( $author->ID, $instance['avatar_size'], '', true ) . ' '; |
| 80 |
|
|
| 81 |
|
echo '<strong>' . esc_html( $author->display_name ) . '</strong>'; |
| 82 |
|
echo '</a>'; |
|
@@ 85-86 (lines=2) @@
|
| 82 |
|
echo '</a>'; |
| 83 |
|
} |
| 84 |
|
else if ( $instance['all'] ) { |
| 85 |
|
if ( $instance['avatar_size'] > 1 ) |
| 86 |
|
echo get_avatar( $author->ID, $instance['avatar_size'], '', true ) . ' '; |
| 87 |
|
|
| 88 |
|
echo '<strong>' . esc_html( $author->display_name ) . '</strong>'; |
| 89 |
|
} |