这真的是一个PHP 问题比WordPress 问题但是,基于此示例代码:
<li><a href="http://<?php echo the_field(\'helpline_url\'); ?>" class="tiptip web" title="<?php echo the_field(\'helpline_url\'); ?>" target="_blank"><?php echo the_field(\'helpline_url\'); ?></a></li>
。。。看来
the_field()
函数返回一个值(因为您随后回显了该返回值)。因此,只需将整个
<li>
在条件中输出,使用
the_field()
:
<?php
if ( the_field( \'helpline_url\' ) ) {
?>
<li><a href="http://<?php echo the_field(\'helpline_url\'); ?>" class="tiptip web" title="<?php echo the_field(\'helpline_url\'); ?>" target="_blank"><?php echo the_field(\'helpline_url\'); ?></a></li>
<?php
}
?>