您可以添加到figcaption 在您的前端。
<?php
if ( !empty( $images ) ) {
foreach ( $images as $image ) {
$image_post = get_post($image);
$caption = $image_post->post_excerpt;
echo
\'<li class="animated fadeIn">\',
\'<figure>\',
wp_get_attachment_image( $image, \'post-full-width\' ),
\'<figcaption>\',
$caption,
\'</figcaption>\',
\'</figure>\',
\'</li>\';
}
}
?>