मैं पोस्ट को 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 )
चाल करेंगे :)