this function cant show second image, i just want second image for the post attachments.
im so sorry my eng so bad. i just want attachment src,something like: if post img =1 echo img src="img1src" and if post img=2 echo img src="img1src" src="img2src" and if img=3 echo img1src img2src img3src...
function the_images() {
global $post;
$attachments = get_children( array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_mime_type' => 'image', 'post_status' => null, 'post_parent' => $post->ID ) );
if ($attachments) {
foreach ( $attachments as $attachment ) {
$src = wp_get_attachment_image_src( $attachment->ID, "attached-image");
$pics = count($attachments);
if ($pics == 2) {echo'<img src="'.$src[0].'"/><img src="'.$src[1].'"/>';}
}
}
}
I need the address of the second picture