主頁 > 網站建設 > 建站知識 > dedecms欄目循環(huán)時在欄目前加上序號

dedecms欄目循環(huán)時在欄目前加上序號

POST TIME:2018-09-02 12:43

在制作dede模板中的導航欄的時候,通常會需要用到如下樣式:

* <a href="#" class="dh1"></a>
* <a href="#" class="dh2"></a>
* <a href="#" class="dh3"></a>
* <a href="#" class="dh4"></a>
* <a href="#" class="dh5"></a>

這樣的序列在標簽{dede:channel}中是無法調用的,所以必須修改標簽,

默認的{dede:channel}調用方法:

1. {dede:channel type=’top’ row=’9′}
2. <a href="[field:typeurl/]" [field:rel/] title="[field:typename/]"
3. class="dh1">[field:typename/]</a>
4. {/dede:channel}

通過修改,改成下面的樣式:

1. {dede:channel type=’top’ row=’9′ line=’2′}
2. <a href="[field:typeurl/]" title="[field:typename/]"
3. class="dh[field:line/]"
4. [field:rel/]></a>
5. {/dede:channel}

修改步驟如下:

一、修改文件include/taglib/channel.lib.php,把

1. $attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,cacheid|";

修改成

1. $attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,
2. cacheid|,line|1";
3. //|后面的1,代表初始值

第二、在第9行附近追加如下代碼:

1. //默認屬性里設置的行數
2.
3. $default_line = $ctag->CAttribute->Items["line"];

第三、把下面代碼

1. $row['sonids'] = $row['rel'] = ”;

修改成

1. $row['sonids'] = $row['rel'] = ”;
2. $row['line'] = $default_line+$i;

最后,特別要注意的是,如果要使用currentstyle樣式,即當前欄目樣式,則必修將剛才的"line"字段,追加到下面代碼后面

1. $linkOkstr = str_replace("~rel~",$row['rel'],$linkOkstr);
2. $linkOkstr = str_replace("~id~",$row['id'],$linkOkstr);
3. $linkOkstr = str_replace("~typelink~",$row['typelink'],$linkOkstr);
4. $linkOkstr = str_replace("~typename~",$row['typename'],$linkOkstr);
5. $linkOkstr = str_replace("~line~",$row['line'],$linkOkstr);

好了,以上就是如何給織夢DEDECMS欄目導航{dede:channel}標簽增加序號屬性,希望對大家有幫助。




收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266