我正在尝试创建自定义顶部链接。 我不知道如何在page.xml和任何其他布局文件中放置块。 我不知道Magento默认顶部链接是如何工作的。 如果我想创建自定义顶部链接,我该怎么办?
答案 0 :(得分:0)
在page.xml中添加此代码 它应该是标题块的子块。
<block type="page/template_links" name="customlinks" as="customlinks"/>
在customer.xml中添加此代码
<default>
<reference name="customlinks">
<action method="addLink" translate="label title" module="customer">
<label>Register</label>
<url helper="customer/getAccountUrl"/>
<title>Register</title>
<prepare/>
<urlParams/>
<position>10</position>
</action>
</reference>
</default>
&#13;
在header.phtml文件中添加此代码
<?php echo $this->getChildhtml('customlinks') ?>
&#13;
它会显示链接&#39;注册&#39;