theme_comment_wrapper

5 comment.module theme_comment_wrapper($content)
6 theme.php theme_comment_wrapper()
7 theme.php theme_comment_wrapper($variables)
8 theme.php theme_comment_wrapper($variables)

Allow themable wrapping of all comments.

1 theme call to theme_comment_wrapper()

File

modules/comment/comment.module, line 1845
Enables users to comment on published content.

Code

function theme_comment_wrapper($content) {
  return '<div id="comments">' . $content . '</div>';
}
Login or register to post comments