Drupal视图1-从摘要列表中删除节点计数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal视图1-从摘要列表中删除节点计数相关的知识,希望对你有一定的参考价值。
Insert into your phptemplate theme's template.php file to override the original View theme code.
/** * Display a summary version of a view. Remove node count. */ function phptemplate_views_summary($view, $type, $level, $nodes, $args) { foreach ($nodes as $node) { $items[] = views_get_summary_link($view->argument[$level]['type'], $node, $view->real_url); } if ($items) { $output .= theme('item_list', $items); } return $output; }
以上是关于Drupal视图1-从摘要列表中删除节点计数的主要内容,如果未能解决你的问题,请参考以下文章
如何从 drupal 7 视图中删除重复项(具有相同字段的节点)?