我们在制作织梦模板的时候,经常想实现这样的一个样式功能:在DedeCMS网站导航中都会添加一些样式,这样能让导航看起来很美观大方。但是{dede:channel}标签是不能修改的,想要有一个好看的样式效果,还要修改一些标签。
默认的{dede:channel}调用方法:
{dede:channel type='top' row='8'}
[field:typename/]
{/dede:channel}
通过修改,改成下面的样式:
{dede:channel type='top' row='8' line='2'}
{/dede:channel}
修改步骤如下:
打开文件include/taglib/channel.lib.php,
把
$attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,cacheid|";
修改成
$attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,cacheid|,line|1";
//|后面的1,代表初始值
在第9行附近追加如下代码:
//默认属性里设置的行数
$default_line = $ctag->CAttribute->Items["line"];
把下面代码
$row['sonids'] = $row['rel'] = '';
修改成
$row['sonids'] = $row['rel'] = ''; $row['line'] = $default_line+$i;
如果要使用currentstyle样式,即当前栏目样式,则必修将刚才的"line"字段,追加到下面代码后面
$linkOkstr = str_replace("~rel~",$row['rel'],$linkOkstr);
$linkOkstr = str_replace("~id~",$row['id'],$linkOkstr);
$linkOkstr = str_replace("~typelink~",$row['typelink'],$linkOkstr);
$linkOkstr = str_replace("~typename~",$row['typename'],$linkOkstr);
$linkOkstr = str_replace("~line~",$row['line'],$linkOkstr);文章来源:https://www.toymoban.com/news/detail-436336.html
完成。文章来源地址https://www.toymoban.com/news/detail-436336.html
到了这里,关于织梦DedeCMS在{dede:channel}标签前加序列号的方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!