| 6 template.php | phptemplate_node_submitted($node) |
Returns the themed submitted-by string for the node.
File
- themes/
garland/ template.php, line 84
Code
function phptemplate_node_submitted($node) {
return t('!datetime — !username',
array(
'!username' => theme('username', $node),
'!datetime' => format_date($node->created),
));
}
Login or register to post comments