Magento – How to load bundle child product by parent product ID

bundlebundled-productmagento2product

I want to load bundle child products from bundle product parent id in Magento 2.

anyone know how can we achieve this?

Thanks 🙂

Best Answer

You can get the type instance in your bundle product, then get the children IDs, as below.

$typeInstance = $product->getTypeInstance();
$requiredChildrenIds = $typeInstance->getChildrenIds($product->getId(), true);
Related Topic