theme_node_list

  1. drupal
    1. 4.7
    2. 5 node.module
    3. 6 node.module
Versions
4.7 – 6 theme_node_list($items, $title = NULL)

Format a listing of links to nodes.

Code

modules/node.module, line 84

<?php
function theme_node_list($items, $title = NULL) {
  return theme('item_list', $items, $title);
}
?>