<?php
defined('_JEXEC') or die('Restricted access'); ?>
<div class="gn_list_<?php echo $globalnews_id; ?>">
<ul>
<?php foreach ($list as $item) : ?>
<li> <?php
$database =& JFactory::getDBO();
global $database;
$com = $this->_component;
$query = "SELECT COUNT(*) FROM jos_comment WHERE contentid='2043'";
$database->SetQuery($query);
$number = $database->loadResult();
echo $item->title."(".$number.")";
?> </li>
<?php endforeach; ?>
<?php if ( $more == 1 && $group->link ) { ?>
<br> <div class="gn_more"> <?php echo JHTML::_('link', $group->link, JText::_('More news...') ); ?>
<?php } ?>
</ul>
</div>
$query = "SELECT COUNT(*) FROM jos_comment WHERE contentid='2043'"; here if I write exactly number then I get what I need
but I need to get content ID which is id of news article