显示作者生物盒

时间:2017-01-23 13:54:16

标签: wordpress wordpress-theming

我有包含作者信息的帖子页面。但似乎只有在输入内容时才会显示作者生物框。如何检查?

<?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 个答案:

答案 0 :(得分:0)

如果你想检查作者描述字段是否为空,如果不是空的那么你想显示它?

<?php if( get_the_author_meta( 'description', $id ) != ''):?>
    <div class="post-full-desc">
        <h6><?php the_author_posts_link(); ?></h6>
        <p><?php echo get_the_author_meta('description')?></p>
    </div>
<?php endif;?>