<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">(<fb:comments-count href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>"></fb:comments-count> Kommentare)</a>
<div class="bt-facebook-comment">
<?php global $post;
$url = 'http://www.tus07.de' . JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
$filecontent = file_get_contents('https://graph.facebook.com/?ids=' . $url);
$json = json_decode($filecontent);
$count = $json->$url->comments;
if ($count == 0 || !isset($count)) {
$count = 'Kein Kommentar';
} elseif ( $count == 1 ) {
$count = '1 Kommentar';
} else {
$count .= ' Kommentare';
}
echo '<a href="' . $url . '"># ' . $count . ' #</a>'; ?>
</div>
Time to create page: 0.100 seconds