Skip to content

Instantly share code, notes, and snippets.

@gionn
Created May 22, 2012 07:47
Show Gist options
  • Save gionn/2767396 to your computer and use it in GitHub Desktop.
Save gionn/2767396 to your computer and use it in GitHub Desktop.
Drupal 7 ~ Retrieve last page nid
template.php template_preprocess_page()
<?php
if ($node->type == 'page') {
$result = db_query("SELECT nid FROM {node} WHERE type = 'page' AND status=1 ORDER BY created DESC LIMIT 1");
$arr = $result->fetchAssoc();
$variables['last_page_nid'] = $arr['nid'];
}
?>
templates/page.tpl.php
<?php
print $last_page_nid;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment