Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在opencart中获取父类别(第一级)中的所有产品?
包括所有子类别及其产品
菜单(类别)下的所有产品,包括其子类别产品(儿童)
考虑到您有当前类别的 ID 存储在 中$category_id,您可以尝试:
$category_id
$data = array( 'filter_category_id' => $category_id, 'filter_sub_category' => true ); $products = $this->model_catalog_product->getProducts($data);