欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

获取 views 的条目数 数目 总和 总计 大小 有大用

shiping1 的头像
在 views 的模板文件中 views-view--allcontentview--page-33.tpl.php (由views-view.tpl.php 得到的精细化文件)中 

加上 这一句 <?php print shipingzhongcustomfour_get_view_rowcount(); ?>

这个函数的代码在一个模块中 为


function shipingzhongcustomfour_get_view_rowcount(){
  $view = views_get_current_view();
  $page_total = count($view->result);
  if(isset($view->total_rows)){
    return "&nbsp;&nbsp;&nbsp;&nbsp;<strong>条目数 <font color='red'>" . $view->total_rows . "</font></strong>";
  } else {
    return "&nbsp;&nbsp;&nbsp;&nbsp;<strong>条目数 <font color='red'>" . $page_total . "</font></strong>";
  }
}  


普通分类: