在post循环中,我想为get\\u the\\u author\\u meta设置一个条件。
因此,如果author元字段为空,则不显示任何内容。下面是我所拥有的,但它不起作用。
<?php if(get_the_author_meta(\'twitter\') ): ?>
<a href="https://www.twitter.com/<?php get_the_author_meta(\'twitter\'); ?>" target="_blank">Twitter</a></p>
<?php else: ?>
<strong>No website</strong>
<?php endif; ?>