Get the first array item for the alt_text.

Props galbaras
This commit is contained in:
Dion Hulse 2022-10-10 09:45:50 +10:00 committed by GitHub
parent eb6fa6367f
commit 29c9dfce16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -819,7 +819,7 @@ function wc_get_product_attachment_props( $attachment_id = null, $product = fals
}
$alt_text = array_filter( $alt_text );
$props['alt'] = isset( $alt_text[0] ) ? $alt_text[0] : '';
$props['alt'] = $alt_text ? reset( $alt_text ) : '';
// Large version.
$full_size = apply_filters( 'woocommerce_gallery_full_size', apply_filters( 'woocommerce_product_thumbnails_large_size', 'full' ) );