我有一个带有作者信息的贴子页面。但似乎只有在输入内容后才能显示作者个人简历框。如何检查?
<?php if(get_avatar( get_the_author_meta( \'ID\' )) != 0){
echo get_avatar( get_the_author_meta( \'ID\' ) , 80);
}?>
<div class="post-full-desc">
<h6><?php the_author_posts_link(); ?></h6>
<p><?php echo get_the_author_meta(\'description\')?></p>
</div>