Skip to content

Instantly share code, notes, and snippets.

@hansspiess
Created August 19, 2012 13:35
Show Gist options
  • Save hansspiess/3394858 to your computer and use it in GitHub Desktop.
Save hansspiess/3394858 to your computer and use it in GitHub Desktop.
Wordpress: Redirect to first child page
<?php
$pagekids = get_pages( "child_of=".$post->ID."&sort_column=menu_order" );
if ( $pagekids ) {
$firstchild = $pagekids[0];
wp_redirect( get_permalink( $firstchild->ID ) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment