0
이미지 캡션, alt, 제목 등을 표시하는 방법을 간략하게 설명하는 유용한 도움말을 발견했습니다.이 기능을 테스트 한 결과 잘 작동하지만 이미지 캡션이없는 div는 여전히 표시됩니다. 사용할 수있는 캡션이 없다면이 함수를 아무 것도 표시하지 않게하려면 어떻게해야합니까?캡션이있는 경우에만 이미지 캡션보기 - Wordpress
function the_post_thumbnail_caption() {
global $post;
$thumb_id = get_post_thumbnail_id($post->id);
$args = array(
'post_type' => 'attachment',
'post_status' => null,
'post_parent' => $post->ID,
'include' => $thumb_id
);
$thumbnail_image = get_posts($args);
if ($thumbnail_image && isset($thumbnail_image[0])) {
//show thumbnail title
echo $thumbnail_image[0]->post_title;
//Uncomment to show the thumbnail caption
//echo $thumbnail_image[0]->post_excerpt;
//Uncomment to show the thumbnail description
//echo $thumbnail_image[0]->post_content;
//Uncomment to show the thumbnail alt field
//$alt = get_post_meta($thumbnail_id, '_wp_attachment_image_alt', true);
//if(count($alt)) echo $alt;
}
}