Skip to content

Instantly share code, notes, and snippets.

@Inzman
Created August 23, 2018 09:58
Show Gist options
  • Select an option

  • Save Inzman/c63baa0a7094925bdc2434d7d843c9e4 to your computer and use it in GitHub Desktop.

Select an option

Save Inzman/c63baa0a7094925bdc2434d7d843c9e4 to your computer and use it in GitHub Desktop.
Determine if a WordPress post or page has children
function has_children() {
global $post;
return count( get_posts( array('post_parent' => $post->ID, 'post_type' => $post->post_type) ) );
}
if ( has_children() ) {
// do something if this item has children
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment