淘先锋技术网

首页 1 2 3 4 5 6 7
zblogPHP模板制作过程中,偶尔会用到指定分类中显示自定义文章数量,比如某个图片分类,要求显示更多文章,可以参考下面这个方法:
来自于 zblog开发者群,zxasd分享:

include.php内
挂载插件:
Add_Filter_Plugin('Filter_Plugin_ViewList_Core','yunduan_Filter_Plugin_ViewList_Core');
function yunduan_Filter_Plugin_ViewList_Core($type, $page, $category, $author, $datetime, $tag, $w, $pagebar){
if($type =='category'){
  if($category->Metas->count>0){
     $pagebar->PageCount=$category->Metas->count;
  }
}
}
再分类里挂载一个$category->Metas->count,可以填写指定显示数量
来自于:2016-12-15 zxasd群内分享