我想在opencart 2网站中使用每个产品类别的名称,描述,网址和图片的值。我已经看过一些例子,但没有一个有效,有人可以帮我这个吗?
答案 0 :(得分:0)
将此代码复制到任何控制器并运行。如果要在主页中获取类别,请打开文件catalog / conlroller / common / home.php并将此代码放在index()方法中。
// to get all categories
$this->load->model('catalog/category');
$categories = $this->model_catalog_category->getCategories();
print_r($categories);