1
替換文本不顯示...替代文本沒有顯示回聲使用wp_get_attachment
$images = get_post_meta(get_the_id(), 'vdw_gallery_id', true);
if($images): ?>
<ul>
<?php foreach($images as $image): ?>
<li>
<a href="<?php echo wp_get_attachment_image_url($image, 'large'); ?>">
<img src="<?php echo wp_get_attachment_image_url($image, 'medium'); ?>" alt="Alter TEXT" />
</a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
我嘗試了很多方法,但沒有得到如何呼應改變文本我創建元字段畫廊。
我知道wp_get_attachment_image_src這將顯示一切,但我只需要在迴路中回顯「alt」文本。
的可能的複製[如何顯示在Chrome的圖像替代文本] (http://stackoverflow.com/questions/5386570/how-to-display-alt-text-for-an-image-in-chrome) – Marcin