我有一个元框设置,允许文章创建者发布一个指向同一文章主题的论坛主题的链接。我用以下内容显示此元数据:
<div class="discuss">
<a href="<?php echo get_post_meta( $post->ID, \'true_title\', true ); ?>">Discuss...</a>
</div>
是否有
if
我可以使用这样的语句,如果有元数据要显示,那么它会显示按钮,但如果没有,它只会删除按钮?
最合适的回答,由SO网友:shanebp 整理而成
在显示div之前,检查它是否为空。
<?php $true_title = get_post_meta( $post->ID, \'true_title\', true ); ?>
<?php if( ! empty( $true_title ) ) : ?>
<div class="discuss"><a href="<?php echo $true_title; ?>">Discuss...</a></div>
<?php endif; ?>