我可以在此代码中添加自定义链接,例如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
提前致谢
答案 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>
被添加到新标签页中打开链接。