Media

$images =& get_children( ‘post_type=attachment&post_mime_type=image&post_parent=10′ );

$counter=0;
foreach( (array) $images as $attachment_id => $attachment )
{
$counter++;
echo “image $counter
“;
}

Login