Community Documentation

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.

File

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

Code

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