Same name and namespace in other branches
  1. 4.6.x modules/node.module \theme_node_list()
  2. 4.7.x modules/node.module \theme_node_list()
  3. 5.x modules/node/node.module \theme_node_list()

Format a listing of links to nodes.

Related topics

1 theme call to theme_node_list()
node_title_list in modules/node/node.module
Gather a listing of links to nodes.

File

modules/node/node.module, line 155
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

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