Created
August 10, 2015 12:32
-
-
Save pauloiankoski/0aa0c7ea100667ab3b5d to your computer and use it in GitHub Desktop.
Template que redireciona para página filha
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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