Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template Name: Child Redirect
- */
- if (have_posts()) {
- while (have_posts()) {
- the_post();
- $pagekids = get_pages("child_of=".$post->ID."&sort_column=menu_order");
- $firstchild = $pagekids[0];
- wp_redirect(get_permalink($firstchild->ID));
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment