DEDECMS织梦列表页每隔N行文章添加一条广告(也可以自定义改为虚线 | 实线等),代码如下:
{dede:arclist row=30 titlelen=50 orderby=pubdate}
[field:stime/][field:title/]
[field:global.autoindex runphp=’yes’]
if(@me%5==0){@me=””;
}
else{@me=””;
}
[/field:global.autoindex]
{/dede:arclist}
代码解释
[field:global.autoindex/] 这个就是循环变量,表示当前是第几条循环后输出的结果
(@me % 5) = 0 判断当前值是否是5的倍数
@= ”;这个中间的 就是如果是5的倍数后所要显示的具体Html代码。如果想把广告换成每5条信息后添加一条虚线,也可以把红色的写成
,其css可以写成如下样式:
.liebiao_line{ height:1px; width:100%; border-bottom:1px dashed #000;}
织梦DedeCMS栏目页分页标题Title添加“第N页”的方法 | 织梦DedeCMS栏目页分页标题Title添加“第N页”的方法 ...