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