Dapatkan Deskripsi Gambar


10

Saya mencoba membuat posting terpecah menjadi 2 kolom. Yang pertama dan kiri akan menjadi gambar apa pun di dalam pos, dan yang kedua dan kanan akan menjadi the_content()(tidak termasuk gambar).

Jadi sampai sekarang saya tidak punya masalah menarik semua gambar. Namun - saya sepertinya tidak bisa mendapatkan keterangan gambar atau judul atau deskripsi.

Inilah kode saya:

<?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';
    }?>

Pada WordPress 3.5.0 wp_prepare_attachment_for_js( $attachment ) akan melakukan trik :)
Sven

Jawaban:


19
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
);
}

Sumber

Seperti yang dijelaskan sporkme kemudian di utas, ini dibuang ke functions.php Anda dan kemudian dapat dipanggil dengan $attachment_meta = wp_get_attachment(your_attachment_id);.


Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.