Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created February 6, 2013 15:10
Show Gist options
  • Select an option

  • Save hsquareweb/4723161 to your computer and use it in GitHub Desktop.

Select an option

Save hsquareweb/4723161 to your computer and use it in GitHub Desktop.
WP: Redirect To First Child Page
<?php
/*
Template Name: Redirect To First Child Page
*/
$pagekids = get_pages("child_of=".$post->ID."&sort_column=menu_order");
if ($pagekids) {
$firstchild = $pagekids[0];
wp_redirect(get_permalink($firstchild->ID));
} else {
// Do whatever templating you want as a fall-back.
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment