Đoạn này để show gallery ra trang shop
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
//* Add gallery thumbs to woocommerce shop page add_action('woocommerce_shop_loop_item_title','wps_add_extra_product_thumbs',5); function wps_add_extra_product_thumbs() { if ( is_shop() ) { global $product; $attachment_ids = $product->get_gallery_attachment_ids(); echo '<div class="product-thumbs">'; foreach( array_slice( $attachment_ids,0,3 ) as $attachment_id ) { $thumbnail_url = wp_get_attachment_image_src( $attachment_id,'thumbnail' )[0]; echo '<img class="thumb" src="' . $thumbnail_url . '">'; } echo '</div>'; } } |
Bài viết mới:
- Tạo Bottom menu cho website ở chế độ mobile
- Hiện thì đồng hồ đếm ngược thời gian giảm giá cho sản phẩm woocommerce
- Kiểm tra và tự Khởi Động Lại MySQL Khi Quá Tải Trên Máy Chủ Linux, VPS, aaPanel
- Hướng dẫn các bạn khôi phục các file bị mất hoặc bị xóa bằng công cụ của Windows 10
- Sửa lỗi link của wordpress có các ký tự Tiếng Việt



