0

我是关于 PHP 的新手,我正在尝试配置我的 wordpress 循环。

我想出了如何在我的模板中显示我的自定义字段,我在我的分类和自定义字段之前手动添加了一个标题,但我希望它不显示分类是否为空。

这是代码:

 <div class="customfields"> 
      <h2 class="widgettitle">My Title</h2>
      <?php echo do_shortcode('[tax id="agences" before="Agences : " separator=", " after=""]'); ?> 
      <?php echo do_shortcode('[custom_fields_block]'); ?>
 </div>

非常感谢您的帮助!

非常感谢,T。

4

2 回答 2

1

所以代码应该是
<?php $taxonomy = do_shortcode('[tax id="agences" before="Agences : " separator=", " after=""]'); ?>

<div class="customfields">
    <?php if(!empty($taxonomy)) : ?>
        <h2 class="widgettitle">My Title</h2>
        <?php echo $taxonomy; ?> 
    <?php endif; ?>
    <?php echo do_shortcode('[custom_fields_block]'); ?>
</div>
于 2013-09-26T13:24:09.973 回答
0

如果您只想在某些变量包含值的情况下以 HTML 显示内容,那么您可以创建一个简单的 if 语句,该语句使用 PHP 的 isset 函数来确定是否设置了变量,如果为 true,则在页面上放置一些 HTML。您可以在此处阅读有关 isset的更多信息。

于 2013-09-26T13:25:42.190 回答