Guest User

Untitled

a guest
Aug 16th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Show Child
  4. */
  5. $query = new WP_Query(array(
  6. 'post_type' => 'page',
  7. 'posts_per_page' => 1,
  8. 'order' => 'ASC',
  9. 'orderby' => 'menu_order',
  10. 'post_parent' => get_the_ID(),
  11. ));
  12.  
  13. if ($query->have_posts()) {
  14. while ($query->have_posts()) {
  15. $query->the_post();
  16.  
  17. header("Location: " . get_permalink());
  18. exit;
  19. }
  20. }
Add Comment
Please, Sign In to add comment