如果要在用户显示名称周围包装一个HTML标记,只需关闭并打开PHP标记:
<div class="author_sidebar">
<?php if ( is_singular( \'post\' ) ) { ?>
<div class="foo"><?php echo get_avatar( get_the_author_meta( \'user_email\' ), 75 ); ?></div>
<div class="bar"><?php echo get_the_author_meta( \'display_name\' ); ?>
<?php } ?>
</div>