Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zarankumar/f80a73598152edf7d67a8c91dbf3be25 to your computer and use it in GitHub Desktop.
Save zarankumar/f80a73598152edf7d67a8c91dbf3be25 to your computer and use it in GitHub Desktop.
Add image to product gallery programmatically - woocommerce .Woocommerce manage field ‘_product_image_gallery’ with id of images separatly for comma.
@m-torin
Copy link

m-torin commented Aug 8, 2018

Works for me:
$media = get_attached_media('image', $pid);
update_post_meta($pid, '_product_image_gallery', implode(',', array_keys($media)));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment