comment_num_all

Definition

comment_num_all($nid)
comment/comment.module, line 1113

Description

Get comment count for a node.

Parameters

$nid The node id.

Return value

The comment count.

Code

<?php
function comment_num_all($nid) {
  static $cache;

  if (!isset($cache[$nid])) {
    $cache[$nid] = db_result(db_query('SELECT comment_count FROM {node_comment_statistics} WHERE nid = %d', $nid));
  }
  return $cache[$nid];
}
?>