在 Drupal 6 中,我将执行以下操作以在我的 node--articles.tpl.php 页面中获取图像:
<?php
$cck_images = $node->field_image;
if (count($cck_images)>0) :
foreach ($cck_images as $cck_image) :
$image = theme('imagecache', 'large', $cck_image['filepath'], $cck_image['data']['alt'], $cck_image['data']['title']);
print $image;
endforeach;
endif;
?>
但是,在 Drupal 7 中没有'['filepath']',我尝试使用:
<?php print_r($field_image); ?>
但变量不存在。我知道 Drupal 7 仍处于 alpha 阶段,但任何帮助将不胜感激!