get_sku(); $price = $product->get_price(); $price = $this->getLowestPrice($price); echo '

' . get_the_title() . '

od ' . $price . ' zł

'; } private function getLowestPrice($price) { $productRepository = new ProductRepository(SERVER_URL); $price = $productRepository->getLowestPrice($price); return $price; } }