게시물을 2 열로 나누려고합니다. 첫 번째와 왼쪽은 게시물 내부의 이미지이며 두 번째와 오른쪽 the_content()
이미지는 이미지를 제외합니다.
따라서 현재 모든 이미지를 가져 오는 데 아무런 문제가 없습니다. 그러나 이미지 캡션이나 제목 또는 설명을 얻을 수 없습니다.
내 코드는 다음과 같습니다.
<?php if ( $images = get_posts(array(
'post_parent' => $post->ID,
'post_type' => 'attachment',
'numberposts' => -1,
'orderby' => 'title',
'order' => 'ASC',
'post_mime_type' => 'image',
)))
{
foreach( $images as $image ) {
$attachmenturl = wp_get_attachment_url($image->ID);
$attachmentimage = wp_get_attachment_image_src( $image->ID, full );
$imageDescription = apply_filters( 'the_description' , $image->post_content );
$imageTitle = apply_filters( 'the_title' , $image->post_title );
$i++;
if (!empty($imageTitle)) {
echo '<div class="client-img-item ci-'.$count++.'"><img src="' . $attachmentimage[0] . '" alt="'.$imageTitle.'" /> <div class="CAPS client-img-caption"><span class="red arrow-lrg">»</span> '.$imageDescription.'</div></div><div class="sml-dots"></div>';
} else { echo '<img src="' . $attachmentimage[0] . '" alt="" />' ; }
}
} else {
echo 'No Image Found';
}?>
wp_prepare_attachment_for_js( $attachment )
트릭을 수행합니다 :)