我使用
添加指向热门链接的新链接<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"
。
有没有办法做到这一点?
谢谢。
答案 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()方法!