您应该能够使用WP\\u post对象的post\\u摘录中的标题。
$the_imgs = get_custom_field(\'gallery_img:to_array\');
foreach( $the_imgs as $img )
{
list( $url, $width, $height ) = wp_get_attachment_image_src( $img, \'thumbnail\' );
$img_post = get_post( $img );
echo \'<img src="\' . $url . \'" width="\' . $width . \'" height="\' . $height . \'"> \' . $img_post->post_excerpt . \'<br />\';
}