Magento - 将目标添加到toplinks上的新链接

时间:2014-06-17 09:07:20

标签: magento

我使用

添加指向热门链接的新链接
<block type="page/template_links" name="top.links" as="topLinks">
      <action method="addLink" translate="label title">
           <label>Blog</label>
           <url>/blog</url>
           <title>Blog</title>
           <prepare/>
           <urlParams/>
           <position>1</position>
      </action>
</block>

它运作正常。 我想在此链接中添加target="_blank"

有没有办法做到这一点?

谢谢。

1 个答案:

答案 0 :(得分:1)

<block type="page/template_links" name="top.links" as="topLinks">
      <action method="addLink" translate="label title">
           <label>Blog</label>
           <url>/blog</url>
           <title>Blog</title>
           <prepare/>
           <urlParams/>
           <position>1</position>
           <aParams>
                    <target>_blank</target>
           </aParams>
      </action>
</block>

您的欢迎!随时可以查看addLink()方法!