W moim białym motywie nie ma skonfigurowanego atrybutu alt dla postu suwaka głównego. Dodałem tekst alternatywny dla obrazu poprzez interfejs biblioteki multimediów. Dodałem następujący kod, aby wyświetlić tekst alternatywny / atrybut. Ale to nie wyświetla:
<img class="homepage-slider_image" src="http://www.blabla.com/wp-content/uploads/2013/06/cms-website4-1800x800.jpg" alt="" />
Oto kod:
<?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
ale nie widzę żadnych informacji o$attachment
obiekcie w twoim kodzie.