How can I attach node images to the frontpage?

I'm using this code to write the node images inside a div

foreach((array)$node->node_images as $id=>$image) {
$description = check_plain($image->description);
$pattern = 'Only local images are allowed.';
$fullsize = strtr($pattern, array('%path'=>file_create_url($image->filepath), '%description'=>$description));
$output .= $fullsize.' ';
if ($count>0 && ++$i >= $count) break;
}
print $output;
?>

Comments

stefano73’s picture

Status: Active » Closed (fixed)