WordPress   

Get linked products of current grouped product in WooCommerce

<?php $groupedProduct = wc_get_product(get_the_ID()); ?>
<table>
	<tr>
		<th>Linked Products</th>
	</tr>
	<?php foreach($groupedProduct->children as $linkedProduct) { ?>
	<tr>
		<td><a href="<?php echo get_the_permalink($linkedProduct); ?>"><?php echo get_the_title($linkedProduct); ?></td>
	</tr>
<?php }	?>
</table>
Need Professional Support for Your Website Problems?

Whether you're facing website issues or struggling with code implementation, our team is here to assist. Hire us to get your website back on track.

Hire Us