dede织梦 arclist标签完美支持currentstyle属性

本文介绍如何在DedeCMS v5.7sp版本中,通过修改arclist.lib.php文件,实现文章列表中当前项样式的自定义。具体步骤包括添加currentstyle属性,并在模板中使用该属性调整显示样式。
摘要由CSDN通过智能技术生成

由于客户需求,所以进行对文章的arclist标签进行设置当前样式(currentstyle),修改前记得备份。

dede版本v5.7sp

找到PHP修改:
include/taglib/arclist.lib.php

1、搜索:
$channelid = $ctag->GetAtt(‘channelid’);

在下面插入:
$currentstyle = $ctag->GetAtt(‘currentstyle’);

2、搜索:
$tagid,$pagesize,$isweight

修改成:
$tagid,$pagesize,$isweight,$currentstyle

3、搜索:
$innertext=”, $arcid=0, $idlist=”, $channelid=0, $limit=”, $att=”, $order=’desc’, $subday=0, $noflag=”,$tagid=”, $pagesize=0, $isweight=’N’)

修改成:
$innertext=”, $arcid=0, $idlist=”, $channelid=0, $limit=”, $att=”,$order=’desc’, $subday=0, $noflag=”,$tagid=”, $pagesize=0,$isweight=’N’,$currentstyle=”)

4、搜索:
$row[‘textlink’] = “<a href='”.$row[‘filename’].”‘>”.$row[‘title’].”</a>”;

在下面插入
if($currentstyle && $row[‘id’]==$arcid){
$currentstyle = str_replace(‘~typelink~’, $row[‘filename’], $currentstyle);
$row[‘currentstyle’] = str_replace(‘~typename~’, $row[‘title’], $currentstyle); //by adooo.org
}

保存文档上传,然后再模板添加以下代码进行调用。

调用方法:
{dede:arclist titlelen=’26’ row=’10’ currentstyle=’1′}
[field:array runphp=’yes’]
if(@me[‘currentstyle’]){
@me = “<a href='{@me[“arcurl”]}’ title='{@me[“title”]}’ class=’current’>{@me[“title”]}</a>”;
}else{
@me = “<a href='{@me[“arcurl”]}’ title='{@me[“title”]}’ class=''>{@me[“title”]}</a>”;
}
[/field:array]
{/dede:arclist}

有问题可以给我留言。

转载于:https://www.cnblogs.com/l9l99/p/10734120.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值