2012-07-06 66 views

回答

8

你有這樣做的多種方法:(位於應用程序/設計/前端/ [包裝]

  1. 在你的模塊的佈局xml文件/ [主題] /佈局/ {your_file_name} .XML ):

    <reference name="head"> 
        <action method="setTitle"><title>Title text here</title></action> 
    </reference> 
    

    這裏的糟糕的事情是,你可以不設置絲毫不差「對飛」。

  2. 在您的塊文件_prepareLayout()方法是個好地方)

    public function _prepareLayout() 
    { 
        $headBlock = $this->getLayout()->getBlock('head'); 
        $headBlock->setTitle('Title text here'); 
        return parent::_prepareLayout(); 
    } 
    
  3. 在別的地方:

    Mage::app()->getLayout()->getBlock('head')->setTitle('Title text here'); 
    

有用的鏈接 -Layouts, Blocks and Templates