空alt标签wordpress

问题描述 投票:0回答:1

我正在将WordPress与Listingpro模板一起使用,我一直在寻找解决方案,并且发现了以下问题:

// 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'时,我看到了一个空的替代项。

php css wordpress alt
1个回答
0
投票
<img src="whatever-src" alt="'.$image_alt.'">

这是您需要的东西,当它在回声内时。仅当与该图像相关联的任何替代项时。

© www.soinside.com 2019 - 2024. All rights reserved.