織夢系統(tǒng)的搜索頁調(diào)用arclist、channelartlist標簽的方法有很多,以下是本人常用的一種調(diào)用方式,分享給大家!
打開include/arc.searchview.class.php
查找
1 2 | require_once (DEDEINC. "/taglib/hotwords.lib.php" ); require_once (DEDEINC. "/taglib/channel.lib.php" ); |
在下面插入
1 2 | require_once (DEDEINC. "/taglib/arclist.lib.php" ); require_once (DEDEINC. "/taglib/channelartlist.lib.php" ); |
查找
1 2 3 4 | else if ( $tagname == "hotwords" ) { $this ->dtp->Assign( $tagid ,lib_hotwords( $ctag , $this )); } |
在下面插入
1 2 3 4 5 6 7 8 | else if ( $tagname == "arclist" ) { $this ->dtp->Assign( $tagid ,lib_arclist( $ctag , $this )); } else if ( $tagname == "channelartlist" ) { $this ->dtp->Assign( $tagid ,lib_channelartlist( $ctag , $this )); } |
這樣就可在dedecms織夢搜索頁面使用arclist和channelartlist標簽調(diào)用數(shù)據(jù)了。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 關(guān)于dede織夢搜索頁調(diào)用arclist標簽方法