Добавить alt и title ко всем изображениям Woocommerce

function.php

//добавить alt и title ко всем изображениям wc
add_filter('wp_get_attachment_image_attributes', 'change_attachement_image_attributes', 20, 2);
function change_attachement_image_attributes( $attr, $attachment ){
    $parent = get_post_field( 'post_parent', $attachment);
    $type = get_post_field( 'post_type', $parent);
    if( $type != 'product' ){
        return $attr;
    }
    $title = get_post_field( 'post_title', $parent);
    $attr['alt'] = $title;
    $attr['title'] = $title;
    return $attr;
}
Контакты

Работаем: с ПН по ПТ, с 08:00 до 17:00 (МСК)
Отдыхаем: в СБ и ВС, чтобы быть в тонусе
и реализовывать самые сложные идеи