Nel mio tema bianco, non esiste alcun attributo alt configurato per il post del dispositivo di scorrimento principale. Ho aggiunto il testo alternativo per l'immagine tramite l'interfaccia della libreria multimediale. Ho aggiunto il seguente codice per visualizzare il testo / attributo alt. Ma non visualizza:
<img class="homepage-slider_image" src="http://www.blabla.com/wp-content/uploads/2013/06/cms-website4-1800x800.jpg" alt="" />
Ecco il codice:
<?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
ma non riesco a vedere alcuna informazione$attachment
sull'oggetto nel tuo codice.