有没有办法可以检查
的值<?php the_field('max_working_height')?>
为空或存储当我使用acnd检查时将显示的值,如果该空是否为空。如果值不为空,那么我必须让它执行一组html代码和像这样的
的PHP代码 <tr style="height: 25px; margin-left: 10px;">
<td style="margin-left: 10px;"><b>Max
<?php the_field('max._outreach'); ?></td>
</tr>
请帮忙。
答案 0 :(得分:0)
<?php
$maxWorkingHeight = the_field('max_working_height');
if (false == $maxWorkingHeight) {
// print your html/php
} else {
// you can print $maxWorkingHeight here if you need it
}
如果未设置字段(null
,false
,0
或空字符串,则假定您的函数返回虚假值,这些都是PHP中虚假值的示例)。
答案 1 :(得分:0)
如果看起来正在使用ACF插件,那么the_field()
会回显该字段的值。如果要捕获字段的值,请使用get_field()
。查看文档here。