wordpress获取附加图像的图像描述

时间:2013-12-06 05:27:21

标签: php wordpress foreach

我正在尝试将帖子拆分为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';
    }?>

1 个答案:

答案 0 :(得分:0)

这是否有助于保持原始格式:大写和空格?

apply_filters( 'the_description' , $image->post_content );

当我将我的专属图像定位到nextgen图库时,描述tekst被更改:大写更改(大写/小写等)..空白和删除末尾的点等... 任何人吗?