Display author bio box

时间:2017-01-23 作者:Pravayest Pravayest

我有一个带有作者信息的贴子页面。但似乎只有在输入内容后才能显示作者个人简历框。如何检查?

<?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>

1 个回复
SO网友:Baikare Sandeep

    if( !empty(get_the_author_meta(\'description\')) ){
       echo get_the_author_meta(\'description\');
    }
可以使用empty()函数检查是否输入了内容。