Drupal 7,显示页面自定义字段并处理空异常
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许一点点 isset() 就能带来不同。
Maybe a little isset() can make the difference.