Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. $p = wc_get_product($product_id);
  2. $children = $p->get_children();
  3. foreach ($children as $child_id) {
  4. $child = wc_get_product($child_id);
  5. echo $child->get_name();
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement