OpenCart主类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenCart主类别相关的知识,希望对你有一定的参考价值。
<?php $top_cat_id = ''; $path = $this->request->get['path']; $top_cat_id = $cat_array[0]; } $this->load->model('tool/seo_url'); $results = $this->model_catalog_category->getCategories(); if ($results) { $output = '<ul>'; } foreach ($results as $result) { $new_path = $result['category_id']; $unrewritten = HTTP_SERVER.'index.php?route=product/category&path=' . $new_path; $rewritten = $this->model_tool_seo_url->rewrite($unrewritten); if ($new_path == $top_cat_id) { $output .= '<li id="current-cat"><a href="'.str_replace('&', '&', $rewritten).'">'.$result['name'].'</a>'; } else { } $output .= '</li>'; } if ($results) { $output .= '</ul>'; } echo $output; ?>
以上是关于OpenCart主类别的主要内容,如果未能解决你的问题,请参考以下文章