magento中的面包屑

时间:2015-08-27 09:41:51

标签: magento

我是magento。默认情况下,我在静态块中获得了痕迹。但是在我的仪表板页面中,它没有显示。我在谷歌搜索但没有任何作用。任何人都可以告诉我如何在仪表板页面中添加痕迹。我想在不使用page.xml的情况下显示面包屑

先谢谢。

1 个答案:

答案 0 :(得分:1)

Go to app\design\frontend\your-package\ your -theme\template\your-modulename\phtml-file and add the following code snippet as per your requirement

// to get breadcrumbs block

<?php $breadcrumbs = $this->getLayout()->getBlock('breadcrumbs');
// add first item ‘'home'’ with link

$breadcrumbs->addCrumb(
'home',
 array(
'label'=>$this->__('Home'),
'title'=>$this->__('Home'), 
'link'=>Mage::getBaseUrl()
)
);

// add second item ‘'brands'’ without link

$breadcrumbs->addCrumb(
'brands',
 array(
'label'=>$this->__('Brands'),
'title'=>$this->__('Brands')
)
);

echo $breadcrumbs->toHtml(); ?>