Чтобы не выводить все изображения
<img src="
<?php print image_style_url
('large',
$node-
>field_image['und'][0]['uri']);
?>" />
<img src="
<?php print image_style_url
('large',
$node-
>field_image['und'][1]['uri']);
?>" />
<img src="
<?php print image_style_url
('large',
$node-
>field_image['und'][2]['uri']);
?>" />
Нужно сделать счетчик. Я не понимаю как его в такой конструкции запихнуть. Помогите с кодом
Комментарии
Можно сделать например что-то похожее на это:
<?php
foreach ($node->field_image['und'] as $key => $value)
print image_style_url('large', $node->field_image['und'][$key]['uri']);
?>
print '<img src="'.image_style_url('large', $item['uri']).'" />';
}
kervi большое спасибо!