我正在使用wp开发一个多作者网站。我想把作者meta放在单页中。输出工作正常,但为了使它更好,我想输出其他东西,如果该字段为空,特别是对于不需要的字段,如网站,推特或Facebook。
基本上我用它来输出字段:
<strong>Website:</strong> <a href="<?php the_author_meta( 'website' ); ?>" target="_blank"></a></p>
我想要做的是如果作者没有任何网站,那么我想输出类似“没有网站”的内容
怎么做? 是的,默认情况下,wordpress中的这个字段不为空,它只有“http://”
之类的内容答案 0 :(得分:1)
<?php if(get_the_author_meta('website') != 'http://'): ?>
<strong>Website:</strong> <a href="<?php the_author_meta('website'); ?>" target="_blank"></a></p>
<?php else: ?>
<strong>No website</strong>
<?php endif; ?>