空自定义字段的回退

时间:2012-10-11 作者:toasterdroid

例如,我正在使用:<?php echo get_post_meta($post->ID, "Pricing_Land_Only", true); ?> 但如果我没有在该字段中键入任何内容,则需要知道如何实现“else”函数以显示“Nothing found”。

原因是我有不同的定价字段,虽然并非所有页面都使用相同的字段,但大多数页面都会使用相同的字段。谢谢

1 个回复
SO网友:Ben HartLenn

您可以这样做:

// store post meta in a variable and use that so you aren\'t pulling the post meta data twice
$landPricing = get_post_meta($post->ID, "Pricing_Land_Only", true)
if(!empty($landPricing))
{
    echo $landPricing;
}
else
{
    echo "Sorry, nothing was found.";
}

结束

相关推荐