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