首页得挂载接口
Add_Filter_Plugin('Filter_Plugin_ViewList_Core', '主题ID_pingbi_cate');
代码如下:
function 主题ID_pingbi_cate(&$type, &$page, &$category, &$author, &$datetime, &$tag, &$w, &$pagebar){ global $zbp; if ($type == 'index'){ $w[] = array('NOT IN', 'log_CateID', 分类id); $pagebar = new Pagebar($zbp->option['ZC_INDEX_REGEX'], true, true); $pagebar->PageCount = $zbp->displaycount; $pagebar->PageNow = $page; $pagebar->PageBarCount = $zbp->pagebarcount; } }
实现多个,添加如下代码:
$cate = '1,2,3'; $fenge = explode(',',$cate); //将其加入$w中 $w[] = array('NOT IN', 'log_CateID', $fenge);

THE END
暂无评论内容