打開 include/arc.listview.class.php 找到,大概在45行
var $remoteDir;
//在它下面加入一行
var $Flag;
//繼續(xù)找到
$this->remoteDir = '';
//在它下面加入一行
$this->Flag = '';
繼續(xù)找到,大概在227行 至 267行的全部
//初始化列表模板,并統(tǒng)計(jì)頁(yè)面總數(shù)
...
...
把他們剪切放到,大概在155行的下面
$this->addSql = " arc.arcrank > -1 ";
放它的下面來(lái)
//繼續(xù)找到
if($ctag->GetAtt("pagesize")!="")
//在它上面加入
if($ctag->GetAtt("flag")!="")
{
$this->Flag = 1;
$flags = explode(',', $ctag->GetAtt("flag"));
for($i=0; isset($flags[$i]); $i++) $this->addSql .= " AND FIND_IN_SET('{$flags[$i]}', arc.flag)>0 ";
}
//繼續(xù)找到
$row = $this->dsql->GetOne($cquery);
//在它上面加入
if($this->Flag != "")
{
$cquery = "SELECT COUNT(*) AS dd FROM `dede_archives` arc WHERE ".$this->addSql;
}
//最后找到
if(preg_match('/hot|click|lastpost/', $orderby))
//改成
if(preg_match('/hot|click|lastpost|weight/', $orderby) || $this->Flag != "")
欄目列表頁(yè)flag標(biāo)簽的寫法
{dede:list pagesize='10' titlelen='250' flag='a,p'}
列表內(nèi)容...
{/dede:list}
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)dede:list列表按flag屬性調(diào)用文檔