Maison > Questions et réponses > le corps du texte
P粉0116843262023-08-27 18:00:39
Vous pouvez d'abord vérifier si get_gallery_image_ids
renvoie un tableau. Si elle existe, vérifiez si la clé 0 (le premier élément) existe. Si tel est le cas, vous êtes libre de l’utiliser comme bon vous semble.
... // Get all IDs $idList = wc_get_product()->get_gallery_image_ids(); // Check if the IDs are an array and key 0 (first element) exists if (is_array($idList) && array_key_exists(0, $idList)) { // Get the first element $image_id = $idList[0]; echo wp_get_attachment_image($image_id, 'woocommerce_thumbnail' ) ; } else { echo wp_get_attachment_image(wc_get_product()->get_image_id(), 'woocommerce_thumbnail' ) ; }
modifier,
Vous devez modifier votre fonction mem_add_on_hover_shop_loop_image
avec ce code. Le code final devrait ressembler à ceci,
add_action('woocommerce_before_shop_loop_item_title', 'mem_add_on_hover_shop_loop_image'); function mem_add_on_hover_shop_loop_image() { // Get all IDs $idList = wc_get_product()->get_gallery_image_ids(); // Check if the IDs are an array and key 0 (first element) exists if (is_array($idList) && array_key_exists(0, $idList)) { // Get the first element $image_id = $idList[0]; echo wp_get_attachment_image($image_id, 'woocommerce_thumbnail'); } else { echo wp_get_attachment_image(wc_get_product()->get_image_id(), 'woocommerce_thumbnail'); } }