欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

zblogPHP自定義博客首頁顯示的文章數量

老白7年前2457瀏覽0評論

在使用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;
 }
}