继续分享wordpress建站教程。之前悦然wordpress建站给大家分享过如何自动给图片添加alt标签,这个方法非常实用,可以节省我们不少手动设置alt标题的时间。
不过最近我发现这个代码在woocommerce产品图片上不起作用。如上图所示,就是产品顶部的图片,之前的代码对这一部分不起作用。
//Woocommerce封面产品图片自动添加alt属性(由悦然wordpress建站www.zsxxfx.com整理)
add_filter('wp_get_attachment_image_attributes', 'change_attachement_image_attributes', 20, 2);
function change_attachement_image_attributes($attr, $attachment) {
global $post;
if ($post->post_type == 'product') {
$title = $post->post_title;
$attr['alt'] = $title;
$attr['title'] = $title;
}
return $attr;
}
接下来我们需要把上面的代码添加到当前wordpress建站主题的functions.php文件中,保存即可生效。
© Copyright 2024. 悦然网络工作室/悦然wordpress建站 专注中小企业wordpress建站 All Rights Reserved.网站地图
本站图片来源为Pexels、Pixabay、Freepik、Unsplash等图片库的免费许可,CC0协议;还有部分为自己手绘,版权碰瓷请自重!法律服务:law@yueranseo.com 蜀ICP备20016391号-1 川公网安备 51011502000367号
微信联系