空 alt 标签 wordpress

Empty alt tags wordpress

我正在使用带有 Listingpro 模板的 WordPress,我一直在寻找解决方案并找到了以下内容:

// An attachment/image ID is all that's needed to retrieve its alt and title attributes.
$image_id = get_post_thumbnail_id();    
$image_alt = get_post_meta($image_id, '_wp_attachment_image_alt', TRUE);  
$image_title = get_the_title($image_id);

但是,当我添加这个时 alt='$image_alt' 显示了一个空的 alt。

<img src="whatever-src" alt="'.$image_alt.'">

这就是你需要的,当它在 echo 中时。 仅当有任何与该图像相关联的 alt 时。