织梦用arclist标签设置当前文章高亮

与此形成鲜明对比的是另一位巨星——葡萄牙队的c罗。上赛季他虽说有42个进球,但经统计,他的效率不到10%。在这个习惯统计学的社会,c罗的42球从深层分析充满了水分。此外,他的球场道德也属于低劣派,假摔贯穿全场,无处不在,江湖人送外号 "跳水运动员 ",桃色风波更是五花八门,而两者后果呢?看看吧:梅西凭借着08—09赛季带领巴萨取得西甲、国王杯、欧洲冠军联赛三冠王,取得433分,获得金球奖,而c罗只有他的一半不到!

做网站比如一些帮助、说明类的页面可以用栏目去做,也可以用文章来做,考虑用文章是因为文章写起来比较方便,还可以用自定义的字段,比栏目要灵活得多。栏目比较好处理当前栏目高亮的问题,写法如下

{dede:channel typeid='' row='' currentstyle="<li class="on"><a rel="nofollow noopener noreferrer" href='~typelink~'>~typename~</a></li>"}

<li><a rel="nofollow noopener noreferrer" href="[field:typeurl/]">[field:title/]</li>

{/dede:channel}

注意typelink和typeurl的写法。如果用文章来做的话,就需要修改几个地方,网上有些错误的写法,笔者亲自测试过,修正后分享给大家。

include/taglib/arclist.lib.php

找到

//增加对分页内容的处理

在这段前加入

$currentstyle = $ctag->GetAtt('currentstyle');

在大概135行,找到

$tagid,$pagesize,$isweight

增加 ,$currentstyle 也就是

$tagid,$pagesize,$isweight,$currentstyle

大概在170行,找到

$isweight='N'

后面增加

,$currentstyle=''

在519行,找到

$row['textlink'] = "<a rel="nofollow noopener noreferrer" href='".$row['filename']."'>".$row['title']."</a>";

后面增加

//by织梦模板 www.dede58.com

if($currentstyle && $row['id']==$arcid){

$currentstyle = str_replace('~typelink~', $row['filename'], $currentstyle);

$row['currentstyle'] = str_replace('~typename~', $row['title'], $currentstyle);

}

模板调用,具体样式请自行修改

{dede:arclist currentstyle="<li class='on' ><a rel="nofollow noopener noreferrer" href='~typelink~'>~typename~</a></li>"}

[field:array runphp='yes']

 if(@me['currentstyle']){

  @me = @me['currentstyle'];

 }else{

  @me = "<li><a rel="nofollow noopener noreferrer" href='{@me['arcurl']}'>{@me['title']}</a></li>";

}

[/field:array]

{/dede:arclist}

本文织梦用arclist标签设置当前文章高亮到此结束。人生不要被过去所控制,决定你前行的,是未来。小编再次感谢大家对我们的支持!

标签: 织梦用 arclist