这实际上取决于图像在模板中的显示方式。如果它是使用像\\u post\\u thumbnail()这样的函数来显示的,该函数返回完整的html字符串以使用alt显示图像,那么应该没有问题,但如果图像是通过仅获取URL来显示的,则它取决于它的显示方式。
例如,下面是直接在WP图像附件页上获取图像的片段:
//fetching attachment image src url
$attachment_size = apply_filters( \'abc_attachment_size\', array( 960, 960 ));
$image_attributes = wp_get_attachment_image_src( $post->ID, $attachment_size);
if( $image_attributes ) {
?>
<img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>">
<?php } ?>
在上面的代码中,我们显示的是我们单独获取的数据中的图像,因为这里没有使用alt,所以它不会显示alt。类似地,在您的情况下,我假设它是因为主题没有指定alt,所以它不会显示在那里。
此外,我尝试下载您的主题文件,但被浏览器报告为恶意文件,所以我离开了它。