做网站

Wordpress建站教程:给Woocommerce产品图片自动添加ALT标签

2025-02-27 00:54:27

继续分享wordpress建站教程。之前悦然wordpress建站给大家分享过如何自动给图片添加alt标签,这个方法非常实用,可以节省我们不少手动设置alt标题的时间。


作者:悦然wordpress建站

最近我发现这个代码在woocommerce产品图片上不起作用。如上图所示,就是产品顶部的图片,之前的代码对这一部分不起作用。

//Woocommerce封面产品图片自动添加alt属性
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文件中,保存即可生效。


相关推荐