comment_num_all
- Versions
- 4.6 – 6
comment_num_all($nid)
Code
modules/comment.module, line 1320
<?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];
}
?>Login or register to post comments 