我有包含作者信息的帖子页面。但似乎只有在输入内容时才会显示作者生物框。如何检查?
<?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>
答案 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;?>