चित्र विवरण प्राप्त करें


11

मैं पोस्ट को 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';
    }?>

WordPress के रूप में 3.5.0 wp_prepare_attachment_for_js( $attachment ) चाल करेंगे :)
स्वेन

जवाबों:


20
function wp_get_attachment( $attachment_id ) {

$attachment = get_post( $attachment_id );
return array(
    'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ),
    'caption' => $attachment->post_excerpt,
    'description' => $attachment->post_content,
    'href' => get_permalink( $attachment->ID ),
    'src' => $attachment->guid,
    'title' => $attachment->post_title
);
}

स्रोत

जैसा कि स्पार्केम बाद में धागे में बताते हैं , यह आपके फ़ंक्शन में डाल दिया जाता है $attachment_meta = wp_get_attachment(your_attachment_id);एफपी और फिर इसके साथ बुलाया जा सकता है ।


से आया: // gist.github.com/hullen/5443218 ????
menardmam
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.