Created
October 3, 2015 09:38
-
-
Save flayder/34e7b4a090bd3ed29514 to your computer and use it in GitHub Desktop.
Вывод картинок из карточки товаров "галерея товара"!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| global $product; | |
| $attachment_ids = $product->get_gallery_attachment_ids(); | |
| foreach( $attachment_ids as $attachment_id ) | |
| { | |
| echo $image_link = wp_get_attachment_url( $attachment_id ); | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment