Get all products of specific category

PHOTO EMBED

Tue Jan 05 2021 14:36:01 GMT+0000 (Coordinated Universal Time)

Saved by @vskand #prestashop #all #products #category

$id_lang=(int)Context::getContext()->language->id;
$start=0;
$limit=100;
$order_by='id_product';
 $order_way='DESC';
$id_category = false; 
$only_active =true;
$context = null;

$all_products=Product::getProducts($id_lang, $start, $limit, $order_by, $order_way, $id_category,
        $only_active ,  $context);
content_copyCOPY