赞
踩
织梦dede:channelartlist嵌套dede:sql,而在dede:sql里只能使用channelartlist里的栏目变量
例如~id~、~typeid~、~typename~
如果想要引用当前文章的其他变量
例如~title~、~writer~、~shorttitle~ 等等
这些变量是不会被解析的,如果想要更多的当前文章变量,我们可以这样做
打开 /include/taglib/channelartlist.lib.php 找到
$pv->Fields['typeurl'] = GetOneTypeUrlA($typeids[$i]);
比如你要用到 ~title~ ,那就在它的下面加入
$pv->Fields['title'] = $refObj->Fields['title'];
添加好以后你的dede:channelartlist嵌套dede:sql就可以这样写了
- {dede:channelartlist typeid ='2,3,4,5'}
- <div class="item" style="margin-top: 20px;">
- <div class="item-t">
- <div class="itc"> {dede:field name='typename'/} </div>
- </div>
- <div class="height10"></div>
- {dede:sql sql="SELECT arc.*,addf.* FROM dede_archives arc LEFT JOIN dede_addonarticle addf ON arc.id=addf.aid WHERE arc.typeid=~id~ AND arc.writer=~title~ ORDER BY arc.id ASC LIMIT 0,30}
- <div class="ilist">
- <div class="il">
- <a href="[field:id runphp=yes]$result=GetOneArchive(@me);@me=$result['arcurl'];[/field:id]" target="_blank">[field:title/]</a>
- </div>
- <div class="ir"> [field:pubdate function='strftime("%Y-%m-%d",@me)'/] </div>
- </div>
- {/dede:sql}
- </div>
- {/dede:channelartlist}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。