Skip to content

Instantly share code, notes, and snippets.

@flayder
Created October 3, 2015 09:38
Show Gist options
  • Select an option

  • Save flayder/34e7b4a090bd3ed29514 to your computer and use it in GitHub Desktop.

Select an option

Save flayder/34e7b4a090bd3ed29514 to your computer and use it in GitHub Desktop.
Вывод картинок из карточки товаров "галерея товара"!
<?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