I am trying to get the comment count for a video entry but this is giving me a count of 1 when there are no comments. Any ideas?
<?php
$commentFeed = $yt->getVideoCommentFeed($videoID);
if ( count($commentFeed) > 0 )
{
foreach ($commentFeed as $commentEntry)
{
// print commentEntry
}
}
?>