PHP Drupal Views 1 - 从摘要列表中删除节点计数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Drupal Views 1 - 从摘要列表中删除节点计数相关的知识,希望对你有一定的参考价值。
/**
* 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;
}
以上是关于PHP Drupal Views 1 - 从摘要列表中删除节点计数的主要内容,如果未能解决你的问题,请参考以下文章
使用 Views 模块(Drupal 7)显示 php 数组
将货币字符串转换为数字 Drupal Views / PHP
Drupal 7 views_embed_view node.tpl.php 字段
PHP Drupal 6 Views2嵌入
PHP Drupal Views AJAX重置按钮,用于暴露过滤器
PHP Drupal Views:显示所有视图模板键(print_r)