Drupal&字段tpl,用于列表中的多字段呈现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal&字段tpl,用于列表中的多字段呈现相关的知识,希望对你有一定的参考价值。
out put a field with multiple values as a list fro styling purposes useing child selectors
<?php if (!$label_hidden): ?> <div class="field-label"<?php print $title_attributes; ?>><?php print $label ?>: </div> <?php endif; ?> <ul class="field-items"<?php print $content_attributes; ?>> <?php foreach ($items as $delta => $item): ?> <li><?php print render($item); ?></li> <?php endforeach; ?> </div> </ul>
以上是关于Drupal&字段tpl,用于列表中的多字段呈现的主要内容,如果未能解决你的问题,请参考以下文章