В следующем разделе товары будут увеличены с 4 до 8 (в четырех столбцах) для раздела «Новые поступления» и будут отображаться в «Бестселлерах» в случайном порядке на домашней странице Storefront:
// "New In" Home products section
add_filter( 'storefront_recent_products_args', 'filter_storefront_recent_products_args', 10, 1 );
function filter_storefront_recent_products_args( $args ) {
$args['limit'] = 8;
$args['columns'] = 4;
return $args;
}
// "Best Sellers" Home products section
add_filter( 'storefront_best_selling_products_args', 'filter_storefront_best_selling_products_args', 10, 1 );
function filter_storefront_best_selling_products_args( $args ) {
$args['orderby'] = 'rand'; // Random
return $args;
}
Код помещается в файл function.php вашей активной дочерней темы (или активной темы). Проверено и работает.