Skip to content

Instantly share code, notes, and snippets.

@biwerr
biwerr / Contao Facebook Metatags
Created June 30, 2015 20:51
Contao Facebook Meta Tags News Article
// News Detail Template (news_full)
<?php
$ogimage = $this->getImage( $this->urlEncode( $this->singleSRC ), 512, 512 , 'box' );
$GLOBALS['og:title'] = $this->newsHeadline;
$GLOBALS['og:description'] = $this->teaser;
$GLOBALS['og:image'] = $this->Environment->base . $ogimage;
?>