zblogphp首页过滤分类(不显示某些分类文章)并重建分页
很多人用zbp建站后,可能需要隐藏部分分类文章,让其不显示在首页,而且翻页码中也不要有多余的存在,此时应该怎么写过滤呢?
Add_Filter_Plugin('Filter_Plugin_ViewList_Core','everbox_articles_xs');代码来自:https://yeelz.com/post/528.html
function everbox_articles_xs(&$type,&$page,&$category,&$author,&$datetime,&$tag,&$w,&$pagebar){ global $zbp; if($type == 'index'){ $w[]=array('<>','log_CateID',27); //以下是为了重建分页,过滤了分类,数量会发生变化 $pagebar = new Pagebar($zbp->option['ZC_INDEX_REGEX'], true, true); $pagebar->PageCount = $zbp->displaycount; $pagebar->PageNow = $page; $pagebar->PageBarCount = $zbp->pagebarcount; } }代码来自:https://yeelz.com/post/528.html