Código PHP:
$images = get_children(
array(
'post_parent' => $post->ID,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
)
);
if ( $images ) {
foreach ( $images as $id => $image ) {
$img = wp_get_attachment_image_src( $image->ID,'full'); // obtiene la url de la imagen
$sgt_img =' '; // como obtengo la url de la siguiente imagen ? y si se puede la anterior
echo "<a href=\"$sgt_img\" ><img src="$img[0]"></a>"; // lista las imagenes
}
}