Drupal 7,显示页面自定义字段并处理空异常

发布于 2024-11-30 00:32:54 字数 299 浏览 2 评论 0原文

 <?php if ($content['field_banner']): ?>
            <div class="proj"><?php print render($content['field_banner']) ?></div>
            <?php endif; ?>

我的 if 条件不起作用,如果页面没有横幅,我会收到错误: 注意:include() 中未定义索引:field_banner(node.tpl.php 第 28 行)

 <?php if ($content['field_banner']): ?>
            <div class="proj"><?php print render($content['field_banner']) ?></div>
            <?php endif; ?>

My if condition is not working, if the page doesn't have banner, i am getting an error:
Notice: Undefined index: field_banner in include() (line 28 of node.tpl.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铜锣湾横着走 2024-12-07 00:32:54

也许一点点 isset() 就能带来不同。

<?php if (isset($content['field_banner'])): ?>

Maybe a little isset() can make the difference.

<?php if (isset($content['field_banner'])): ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文