Skip to content

Instantly share code, notes, and snippets.

@tim-bec
Created June 5, 2013 06:28
Show Gist options
  • Save tim-bec/5711988 to your computer and use it in GitHub Desktop.
Save tim-bec/5711988 to your computer and use it in GitHub Desktop.
Metadescription und pageTitel für contao in templates überschreiben
<?php
#strings bereinigen
$metadescription = strip_tags($desc);
$title = strip_tags($title);
$GLOBALS['objPage']->description = $metadescription;
$GLOBALS['objPage']->pageTitle.= ' ' . $title;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment