一种为具有多个值的 drupal cck 字段创建动态循环的方法
我有一个要打印的链接列表,类似于 Drupal:关联对多个 CCK 字段进行分组,但多组模块不再活动(大约在该帖子发布后一个月),我一直像这样打印它们:
<?php if($node->field_committee_link[0][value]): ?><h4>1) <a href="<?php print $node->field_committee_link[0][value] ?>"><?php print $node->field_committee_link[0][value] ?></a></h4><?php endif; ?>
<?php if($node->field_link_descriptor[0][value]): ?><?php print ' '. $node->field_link_descriptor[0][value] ?><?php endif; ?>
更改数字
是他们循环的一种方式,例如
for $node->field_committee_link[0][值] 到 $node->field_committee_link[x][值] 打印 $node->field_committee_link[x][value] x=i++ 接下来
或者我需要对此进行预处理吗?
非常感谢帮助
i have a list of links that i want to print similar to Drupal: Associating grouping more than one CCK field but the multigroup module is no longer active (as of like a month after that post) i have been printing them like so:
<?php if($node->field_committee_link[0][value]): ?><h4>1) <a href="<?php print $node->field_committee_link[0][value] ?>"><?php print $node->field_committee_link[0][value] ?></a></h4><?php endif; ?>
<?php if($node->field_link_descriptor[0][value]): ?><?php print ' '. $node->field_link_descriptor[0][value] ?><?php endif; ?>
and changing the numbers
is their a way to loop through such as
for $node->field_committee_link[0][value] to $node->field_committee_link[x][value]
print $node->field_committee_link[x][value]
x= i++
next
or would i need to preprocess this?
help greatly appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试...
Try...