打開織夢/include/extend.func.php 最后加上以下代碼:
//列表頁獲取網(wǎng)友熱搜 24小時
function GetHotSearch($tid){global $dsql;$time = time() - 86400;$sql = "select * from dede_archives where typeid = '$tid' and shorttitle <> '' group by shorttitle order by pubdate desc limit 10";$dsql->Execute('me',$sql);$li = '';while($arr = $dsql->GetArray('me')){if($arr['pubdate'] >$time ){$class = 'new';}else{$class = '';}$barr = GetOneArchive($arr['id']);$arcurl = $barr['arcurl'];$li .= '<li><span class="right"><time class="'.$class.'">'.date('Y-m-d',$arr['pubdate']).'</time></span><a rel="nofollow" target="_blank" href="go.php?url='.$arcurl.'" title="'.$arr['shorttitle'].'">'.$arr['shorttitle'].'</a></li>';}return $li;}
//排行榜獲取網(wǎng)友熱搜 3天
function hot_3_GetHotSearch($tid){global $dsql;$time = time() - 86400;$sql = "select * from dede_archives where pubdate > UNIX_TIMESTAMP( CURDATE( ) - INTERVAL 3 day) and typeid = '$tid' and shorttitle <> '' group by shorttitle order by click desc limit 10";$dsql->Execute('me',$sql);$li = '';while($arr = $dsql->GetArray('me')){if($arr['pubdate'] >$time ){$class = 'new';}else{$class = '';}$barr = GetOneArchive($arr['id']);$arcurl = $barr['arcurl'];$li .= '<li><span class="right"><time class="'.$class.'">'.date('Y-m-d',$arr['pubdate']).'</time></span><a rel="nofollow" target="_blank" href="go.php?url='.$arcurl.'" title="'.$arr['shorttitle'].'">'.$arr['shorttitle'].'</a></li>';}return $li;}
//排行榜獲取網(wǎng)友熱搜 7天
function hot_7_GetHotSearch($tid){global $dsql;$time = time() - 86400;$sql = "select * from dede_archives where pubdate > UNIX_TIMESTAMP( CURDATE( ) - INTERVAL 7 day) and typeid = '$tid' and shorttitle <> '' group by shorttitle order by click desc limit 10";$dsql->Execute('me',$sql);$li = '';while($arr = $dsql->GetArray('me')){if($arr['pubdate'] >$time ){$class = 'new';}else{$class = '';}$barr = GetOneArchive($arr['id']);$arcurl = $barr['arcurl'];$li .= '<li><span class="right"><time class="'.$class.'">'.date('Y-m-d',$arr['pubdate']).'</time></span><a rel="nofollow" target="_blank" href="go.php?url='.$arcurl.'" title="'.$arr['shorttitle'].'">'.$arr['shorttitle'].'</a></li>';}return $li;}
//排行榜獲取網(wǎng)友熱搜 30天
function hot_30_GetHotSearch($tid){global $dsql;$time = time() - 86400;$sql = "select * from dede_archives where pubdate > UNIX_TIMESTAMP( CURDATE( ) - INTERVAL 30 day) and typeid = '$tid' and shorttitle <> '' group by shorttitle order by click desc limit 10";$dsql->Execute('me',$sql);$li = '';while($arr = $dsql->GetArray('me')){if($arr['pubdate'] >$time ){$class = 'new';}else{$class = '';}$barr = GetOneArchive($arr['id']);$arcurl = $barr['arcurl'];$li .= '<li><span class="right"><time class="'.$class.'">'.date('Y-m-d',$arr['pubdate']).'</time></span><a rel="nofollow" target="_blank" href="go.php?url='.$arcurl.'" title="'.$arr['shorttitle'].'">'.$arr['shorttitle'].'</a></li>';}return $li;}
//列表頁獲取欄目關(guān)注 30天 14條
function hotword_30_GetHotSearch($tid){global $dsql;$time = time() - 86400;$sql = "select * from dede_archives where pubdate > UNIX_TIMESTAMP( CURDATE( ) - INTERVAL 90 day) and typeid = '$tid' and shorttitle <> '' group by shorttitle order by click desc limit 14";$dsql->Execute('me',$sql);$li = '';while($arr = $dsql->GetArray('me')){if($arr['pubdate'] >$time ){$class = 'new';}else{$class = '';}$barr = GetOneArchive($arr['id']);$arcurl = $barr['arcurl'];$li .= '<a rel="nofollow" target="_blank" href="go.php?url='.$arcurl.'" title="'.$arr['shorttitle'].'">'.$arr['shorttitle'].'</a>';}return $li;}
以上就是織夢列表頁獲取熱搜排行榜文章的全部內(nèi)容,希望對大家的學(xué)習(xí)和解決疑問有所幫助,也希望大家多多支持武林網(wǎng)。新聞熱點
疑難解答
圖片精選