Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function node_page_title

Title callback: Returns the title of the node.

Parameters

$node: The node object.

Return value

An unsanitized string that is the title of the node.

See also

node_menu()

1 string reference to 'node_page_title'
node_menu in modules/node/node.module
Implements hook_menu().

File

modules/node/node.module, line 2199

Code

function node_page_title ($node) {
 return $node->title ;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.