theme_comment_wrapper

Definition

theme_comment_wrapper($content)
comment/comment.module, line 1835

Description

Allow themable wrapping of all comments.

Code

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