Guest User

Untitled

a guest
Aug 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. function has_children () {
  3. global $post;
  4. $children = get_pages('child_of=' . $post->ID);
  5. if (count($children) > 0) {
  6. echo "I have been a naughtly slutty page... now I have " . count($children) . " little bastards running around.";
  7. }
  8. }
  9. ?>
Add Comment
Please, Sign In to add comment