Skip to content

Instantly share code, notes, and snippets.

@raynimmo
Created November 5, 2013 17:49
Show Gist options
  • Save raynimmo/24278d66d0935c829e34 to your computer and use it in GitHub Desktop.
Save raynimmo/24278d66d0935c829e34 to your computer and use it in GitHub Desktop.
Drupal page-title hack; used from page.tpl.php *note GET-q will be discouraged in D8
<?php
if (!isset($path)) {
$nodepath = $_GET['q'];
}
if ($nodepath == 'contact') {
$title = 'Get In Touch';
}
if ($nodepath == 'blog') {
$title = 'Design &amp; Development Portfolio';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment