Drupal 7 php循环并动态渲染图像

时间:2014-08-30 11:46:01

标签: php drupal-7

我目前有自定义内容类型的文章,其中我有一个使用node-tpl.php连接的滑块滑块工作正常我的问题是我有这个内容类型的图像字段,我希望它们是在

  • 中呈现,以便它们显示在滑块内我似乎无法将php片段添加到当前使用此代码的
  • 元素 print render($ content ['field_images'] [i]); 其中i是要渲染的字段图像数组中的索引

    完整的php代码段

    <?php
    $i=0;
     $array=$html->find('li');
    ?>
     <?php
     foreach ($array as $value){
     print render($content['field_images'][i]);
     $i=i+1;}
     ?>
    
  • 1 个答案:

    答案 0 :(得分:1)

    以下内容可以帮助您入门。

    foreach($content['field_images']['#items'] as $key => $value) {
        print render($content['field_images'][$key]);
    }