Zblog-PHP特定分类内容不在首页显示方法
由于建站需要,需要在ZBLOG PHP首页调用文章列表的时候不显示特定的内容,这个操作需要如何来做呢?下面来介绍个方法,亲测可用:
这里我们可以在"include.php"主题文件中添加上面代码,记得上面的数字ID是我们需要不在首页显示的。
function zbp_exclude_category(&$type,&$page,&$category,&$author,&$datetime,&$tag,&$w,&$pagebar){
global $zbp;
if($type == 'index'){
$w[]=array('<>','log_CateID',10);
//重建分类
$pagebar = new Pagebar($zbp->option['ZC_INDEX_REGEX']);
$pagebar->PageCount = $zbp->displaycount;
$pagebar->PageNow = $page;
$pagebar->PageBarCount = $zbp->pagebarcount;
}
}
同时,我们需要创建"ActivePlugin_主题ID(){}"激活。
Add_Filter_Plugin('Filter_Plugin_ViewList_Core','zbp_exclude_category');
然后刷新试下吧。
声明:本文由云召博客收集发布,如有侵权,请联系我们,我们将第一时间进行处理。