添加自定义链接到顶级链接Magento

时间:2016-06-01 05:43:22

标签: php xml magento header frontend

我可以在此代码中添加自定义链接,例如http://google.com/

<reference name="top.links">
    <action method="addLink" translate="label title" >
        <label>Your Label</label>
        <url ....../>
        <title>Your Title</title>
        <prepare/>
        <urlParams/>
        <position>100</position>
    </action>
</reference>

此代码来自我在Magento中的主题的customer.xml

提前致谢

1 个答案:

答案 0 :(得分:2)

是的,你可以。在主题的local.xml中,在<reference name="top.links">

下添加此代码
<action method="addLink" translate="label title">
    <label>Google</label>
    <url>http://google.co.in</url>
    <title>Google</title>
    <prepare/>
    <urlParams/>
    <position>80</position>
    <aParams>
        <target>_blank</target>
    </aParams>
</action>

P.S:<target>被添加到新标签页中打开链接。