Si son imágenes subidas por el upload al añadir la entrada, puedes hacerlo así:
Código:
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");
$imagen_peque = wp_get_attachment_image_src($image->ID, "thumbnail");
$numero++;
echo $imagen_grande[0];
endforeach;
endif;