내 흰색 테마에는 홈 슬라이더 게시물에 대해 구성된 alt 속성이 없습니다. 미디어 라이브러리 인터페이스를 통해 이미지의 대체 텍스트를 추가했습니다. 대체 텍스트 / 속성을 표시하기 위해 다음 코드를 추가했습니다. 그러나 표시되지 않습니다.
<img class="homepage-slider_image" src="http://www.blabla.com/wp-content/uploads/2013/06/cms-website4-1800x800.jpg" alt="" />
코드는 다음과 같습니다.
<?php
$image = get_post_meta(get_the_ID(), WPGRADE_PREFIX.'homepage_slide_image', true);
if (!empty($image)) {
$image = json_decode($image);
$image_alt = get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true);
if ( empty( $image_alt )) {
$image_alt = $attachment->post_title;
}
if ( empty( $image_alt )) {
$image_alt = $attachment->post_excerpt;
}
$image_title = $attachment->post_title;
$image_id = $image->id;
$image = wp_get_attachment_image_src( $image_id, 'blog-huge', false);
echo '<img class="homepage-slider_image" src="'.$image[0].'" alt="'. $image_alt .'" />';
}
?>
$attachment->ID
하지만$attachment
코드에서 객체에 대한 정보를 볼 수 없습니다 .