Rumah > Soal Jawab > teks badan
P粉0116843262023-08-27 18:00:39
Anda boleh menyemak dahulu jika get_gallery_image_ids
mengembalikan tatasusunan. Jika ia wujud, semak sama ada kekunci 0 (elemen pertama) wujud. Jika ya, maka anda bebas untuk menggunakannya mengikut kehendak anda.
... // 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' ) ; }
edit,
Anda harus mengedit fungsi mem_add_on_hover_shop_loop_image
anda dengan kod ini. Kod akhir sepatutnya kelihatan seperti ini,
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'); } }