2017-01-23 18 views
0

私は著者情報を持つ投稿ページを持っています。しかし、著者のバイオボックスは、コンテンツが入力されている場合にのみ表示する必要があります。それを確認するには?著者のバイオボックスを表示

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

質問は不明です。 'the_author_posts_link()'は著者名を表示していませんか?または 'get_the_author_meta()'が動作していませんか? –

答えて

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;?> 
関連する問題