Last active
February 19, 2016 14:32
-
-
Save renanlara/052deb76585f388dcb83 to your computer and use it in GitHub Desktop.
Especifique qual arquivo usar para páginas filhas.
This file contains 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 | |
/** | |
* Espeficicar por padrão. | |
*/ | |
if( $post->post_parent !== 0 ) { | |
get_template_part('page', 'child'); | |
} else { | |
get_template_part('page', 'default'); | |
} | |
?> | |
<?php | |
/** | |
* Espeficicar por ID. | |
*/ | |
if(!in_array($post->post_parent, array(15, 11, 17, 13))) { | |
get_template_part('page', 'default'); | |
} else { | |
get_template_part('page', 'child'); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment