saludos nuevamente;
logre un avance;
Con el siguiente código pudo mostrar la url donde se encuentra la imagen (ej:
http://www.???.com/wp-content/upload.../07/Desert.jpg)
Pero necesito solamente obtener el nombre de la imagen "Desierto.jpg"
Código PHP:
<?php if ($images = get_children(array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'numberposts' => -1,
'post_mime_type' => 'image',
))) :
foreach( $images as $image ) :
$imagen_grande = wp_get_attachment_image_src($image->ID, "large");
echo $imagen_grande[0];
endforeach;
endif;
?>
Alguna idea?