dedecms織夢(mèng)dede:channel標(biāo)簽里面調(diào)用文章列表
來源:本站原創(chuàng)
|時(shí)間:2021-08-05
|欄目:
dedecms|點(diǎn)擊: 次
dedecms織夢(mèng)dede:channel標(biāo)簽里面調(diào)用文章列表實(shí)現(xiàn)代碼如下所示:
01 |
{dede:channel type = 'son' noself= 'yes' } |
04 |
$sql = "SELECT arc.* FROM `dede_archives` arc where arc.arcrank>-1 AND arc.typeid = @me ORDER BY arc.id desc limit 10" ; |
05 |
$dsql->SetQuery($sql); |
08 |
while ($row = $dsql->GetArray( 't' )) |
10 |
$arcurl = GetOneArchive($row[ 'id' ]); |
11 |
$pubdate = MyDate( 'm-d' ,$row[ 'pubdate' ]); |
13 |
<dt><a href= "{$arcurl['arcurl']}" ><span>{$row[ 'title' ]}</span><span>{$pubdate}</span></a></dt> |
|