Skip to content

Instantly share code, notes, and snippets.

@bmoredrew
Created July 4, 2014 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmoredrew/dd74469de3b8e4347f8e to your computer and use it in GitHub Desktop.
Save bmoredrew/dd74469de3b8e4347f8e to your computer and use it in GitHub Desktop.
<? if ( 'my_posttype' == get_post_type() )
{
global $post;
if ( $post->post_parent )
{
include dirname( __FILE__ ) . '/single-my_posttype-child.php';
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment