Skip to content

Instantly share code, notes, and snippets.

View nicksantamaria's full-sized avatar

Nick Santamaria nicksantamaria

View GitHub Profile
@nicksantamaria
nicksantamaria / gist:1013816
Created June 8, 2011 05:06
Psuedo-code for getting the parent page's title when using urls as hierarchy
<?php
// Get the requested URL alias and explode into array
$q = trim($_SERVER['REQUEST_URI'], '/');
$arg = explode('/', $q);
// Shorten the URL by 1 argument
$newArg = array_slice($arg, 0, (count($arg) - 1));
// Get the menu item for the new URL