我想使用local.xml
-- 特别是登录/注销链接重新排列我的顶级链接。如果不删除链接然后重新添加它们并修改它们的位置标签,这是否可能?
当前(默认情况下)登录和注销设置为位置 100 in customer.xml
:
<customer_logged_in>
<reference name="top.links">
<action method="addLink" translate="label title" module="customer">
<label>Log Out</label>
<url helper="customer/getLogoutUrl"/>
<title>Log Out</title>
<prepare/>
<urlParams/>
<position>100</position>
</action>
</reference>
</customer_logged_in>
<customer_logged_out>
<reference name="top.links">
<action method="addLink" translate="label title" module="customer">
<label>Log In</label>
<url helper="customer/getLoginUrl"/>
<title>Log In</title>
<prepare/>
<urlParams/>
<position>100</position>
</action>
</reference>
</customer_logged_out>
我希望他们都在位置 1(通过local.xml
)。
我知道setAttribute
操作方法,但我不确定在这种情况下如何使用它。