Skip to content

Instantly share code, notes, and snippets.

@pauloiankoski
Created August 10, 2015 12:32
Show Gist options
  • Save pauloiankoski/0aa0c7ea100667ab3b5d to your computer and use it in GitHub Desktop.
Save pauloiankoski/0aa0c7ea100667ab3b5d to your computer and use it in GitHub Desktop.
Template que redireciona para página filha
<?php
/*
* Template Name: que redireciona para filho
*/
$child_page = get_pages( "child_of=" . $post->ID . "&sort_column=menu_order" );
if ( $child_page ) {
$firstchild = $child_page[0];
wp_redirect( get_permalink( $firstchild->ID ) );
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment