zblog如何自定义博客首页显示的文章数量
在使用zblogPHP的时候可能某些用户,想让首页显示更多内容,而列表页调用按正常后台设置显示,此时就必须对首页进行修改了!
挂载:
Add_Filter_Plugin('Filter_Plugin_ViewList_Core','ydqeeke_Filter_Plugin_ViewList_Core');在include.php加入:
function ydqeeke_Filter_Plugin_ViewList_Core(&$type,&$page,&$category,&$author,&$datetime,&$tag,&$w,&$pagebar) {
if($type == 'index'){
// $pagebar->PageCount = 30;// $pagebar = new Pagebar($zbp->option['ZC_INDEX_REGEX']);
$pagebar->PageCount = 30;// $pagebar->PageNow = $page;// $pagebar->PageBarCount = $zbp->pagebarcount;
}}声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
仍然有问题? 我们要如何帮助您?



