我有一篇带有作者信息的帖子。但是,似乎只有当输入了内容时,才应该显示作者的bio框。怎么检查?
<?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>发布于 2017-01-25 12:38:42
如果要检查作者描述字段是否为空,如果不为空,那么要显示它吗?
<?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;?>https://stackoverflow.com/questions/41808008
复制相似问题