function theme_talk_comments in Talk 6
Same name and namespace in other branches
- 7 talk.module \theme_talk_comments()
A theme function to provide flexible rendering of the comments.
Parameters
$node: The node whose talk page is being displayed.
1 string reference to 'theme_talk_comments'
- talk_theme in ./
talk.module - Implementation of hook_theme().
1 theme call to theme_talk_comments()
- template_preprocess_talkpage in ./
talk.module - Template preprocess function.
File
- ./
talk.module, line 298 - Comments are displayed in a separate 'talk' tab, for node types you wish
Code
function theme_talk_comments($node) {
return comment_render($node, 0);
}