的magento - 添加和使用定位一个那个local.xml块(magento - adding

2019-10-17 22:40发布

我有一个模板

 app\design\frontend\base\default\template\dir\template.phtml

是这个样子的

<div class='block block-list'>  
    <div class='block-title'><strong><span>Some Block</span></strong></div>
        <div class='block-content'>  
            &nbsp;<?php echo "my content"; ?>
        </div>
    </div>

我通过将下面的代码到local.xml文件,定位在所述目录页上的块。 但是是有可能在同一时间到块到列的顶部位置?

 <?xml version="1.0"?>
 <layout version="0.1.0">    
      <catalog_category_default translate="label"> 
       <reference name="right">
         <block  type="core/template" 
            name="somename"
            template="dir/template.phtml" />
      </reference>
     </catalog_category_default>    
 </layout>

跟进https://stackoverflow.com/posts/15736207/edit

Answer 1:

代码用于定位的CMS块(布局xml文件)

<block type="cms/block" before="-" name="left.permanent.callout">
<block type="cms/block" before="some-other-block" name="left.permanent.callout">
<block type="cms/block" after="-" name="left.permanent.callout">
<block type="cms/block" after="some-other-block" name="left.permanent.callout">

使用和属性之后 ,可以改变块顺序...

some-other-block是块的name属性

http://www.magentocommerce.com/knowledge-base/entry/controlling-block-order



文章来源: magento - adding and positioning a block using local.xml
标签: magento block