WC_Product[]|int[], 'columns'=>int, 'empty_text'=>string] * * @package XShop */ declare(strict_types=1); defined('ABSPATH') || exit; $products = $args['products'] ?? []; $columns = isset($args['columns']) ? max(1, min(6, (int) $args['columns'])) : 4; if (empty($products)) { $text = $args['empty_text'] ?? esc_html__('No products found.', 'xshop'); get_template_part('template-parts/components/empty-state', null, ['title' => esc_html__('No products', 'xshop'), 'text' => $text]); return; } ?>