1

在 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 阶段,但任何帮助将不胜感激!

4

1 回答 1

9

尝试这个:

<?php
$nid = 4; 
$node = node_load($nid);
?>
<img src="<?php echo render(file_create_url($node->field_image['und'][0]['uri'])); ?>" />
于 2010-10-19T15:00:25.547 回答