', '', $page_id); ?>
'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => 0,
'orderby' => 'rand'
);
$attachments = get_posts($args);
$img_id=0;
if($attachments)
foreach($attachments as $attachment)
{
$img = wp_get_attachment_image_src($attachment->ID, 'home-thumb' );
if($img[1] == 590 && $img[2]==330) //!!!!! -> Must be Foto width & height
{
$img_id=$attachment->ID;
}
}
if($img_id!=0)
{
$image_attributes = wp_get_attachment_image_src( $img_id,'home-thumb' ); // returns an array
?>
No image found. To see your own images on the Home page, please go to Media and upload images greather than 590 x 330 pixels. If you uploaded more, they will be displayed random to each page's refresh.
Note: To view these images, please do not attach them to any post.