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 = '
';
$fullsize = strtr($pattern, array('%path'=>file_create_url($image->filepath), '%description'=>$description));
$output .= $fullsize.' ';
if ($count>0 && ++$i >= $count) break;
}
print $output;
?>
$description = check_plain($image->description);
$pattern = '
$fullsize = strtr($pattern, array('%path'=>file_create_url($image->filepath), '%description'=>$description));
$output .= $fullsize.' ';
if ($count>0 && ++$i >= $count) break;
}
print $output;
?>
Comments
Comment #1
stefano73 commented