0
我有一個鏈接列表,我想打印類似於Drupal: Associating grouping more than one CCK field但多組模塊不再處於活動狀態(就像那個帖子後的一個月)我已打印它們像這樣:一種爲多個值創建動態循環的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; ?>
和改變數字
是它們通過諸如
爲$節點 - > field_committee_link [0] [值]到$一種方法來循環node-> field_committee_link [x] [value] print $ node-> field_committee_link [x] [value] x = i ++ next
或者我需要預處理這個嗎?
幫助非常感謝