Skip to content

Instantly share code, notes, and snippets.

@waqasy
Forked from lukaszklis/gist:1247306
Created December 11, 2018 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waqasy/6811b52d74e42ac4921638dfca1fbd7d to your computer and use it in GitHub Desktop.
Save waqasy/6811b52d74e42ac4921638dfca1fbd7d to your computer and use it in GitHub Desktop.
WordPress: check if a current page has children, if so display them, if not display all pages on the same level as current page
<?php
// Your functions.php content
function has_children() {
global $post;
$pages = get_pages('child_of=' . $post->ID);
return count($pages);
}
function is_top_level() {
global $post, $wpdb;
$current_page = $wpdb->get_var("SELECT post_parent FROM $wpdb->posts WHERE ID = " . $post->ID);
return $current_page;
}
// Somewhere in your template
echo '<ul>';
$base_args = array(
'hierarchical' => 0
);
if (has_children()) {
$args = array(
'child_of' => $post->ID,
'parent' => $post->ID
);
} else {
if (is_top_level()) {
$args = array(
'child_of' => $post->post_parent,
'parent' => $post->post_parent
);
} else {
$args = array(
'parent' => 0
);
}
}
$args = array_merge($base_args, $args);
$pages = get_pages($args);
foreach ($pages as $page) {
echo '<li><a href="' . get_permalink($page->ID) . '">' . $page->post_title . '</a></li>';
}
echo '</ul>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment