Four related products in one row
Shows four related products in a row of four under each product.
<?php
add_filter(
'woocommerce_output_related_products_args',
static function ( $args ) {
$args['posts_per_page'] = 4;
$args['columns'] = 4;
return $args;
},
20
);
Good to know
Applies to classic product templates.
In these packs
- WooCommerce essentials: The small WooCommerce changes shop owners ask for most.