我有以下代码:
<?php $buycheck = get_post_meta($post->ID, 'buy-link', true); ?>
<?php if ( $buycheck ) : ?>
<div class="section-title sidebar span5">
<h5>Get This Release</h5>
</div>
<?php else : ?>
<div class="section-title sidebar span5">
<h5>More Releases</h5>
</div>
<?php endif; ?>
稍后在我的代码中,我希望能够说如果购买链接不存在 - 即该字段中没有数据 - 然后做一些事情,否则做一些不同的事情。
不知道该怎么做!帮助表示赞赏!
(顺便说一句,我首先将这个问题发布到 Wordpress Stack Exchange。它在那里被投票关闭,因为它显然比 Wordpress 更关注 PHP 布尔逻辑 - https://wordpress.stackexchange.com/questions/60387/how-do-i -do-if-post-meta-does-not-exist#comment78412_60387)