Skip to content

Instantly share code, notes, and snippets.

@nextab
Created August 11, 2025 07:48
Show Gist options
  • Save nextab/dcf631d1a15242158c009895ec21b025 to your computer and use it in GitHub Desktop.
Save nextab/dcf631d1a15242158c009895ec21b025 to your computer and use it in GitHub Desktop.
<?php
global $post;
$post_parent = $post->post_parent;
if ( $post_parent ){
wp_redirect(get_permalink($post_parent));
} else {
$home_url = home_url();
wp_redirect( $home_url);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment