在firesale中显示类别

时间:2013-12-11 12:38:33

标签: php codeigniter pyrocms

我正在使用firesale类别来显示所有类别。这是我的代码......

{{ firesale:categories}}
        {{ entries}}
           <p><a href="{{ firesale:url route='category' id=id }}">{{ title }}</a></p>
        {{ /entries}}    
  {{ /firesale:categories }}

它按预期显示类别。但我试图查看类别的数组结构。 (从个别类别获取id,parent,slug等)..我已经尝试了以下代码,但它不起作用。

  {{ firesale:categories}}
       <?php 
            echo "<pre>";
            print_r($entries);
        ?>
    {{ /firesale:categories }}

如何查看类别的数组结构?

0 个答案:

没有答案