anatol06
5/3/2018 - 3:56 PM

wp-submenu

WP - Get Submenu Items

// Get Top Parent Page (in functions.php)
function get_top_parent() {
   global $post;
   if($post->post_parent) {
      $ancestors = array_reverse(get_post_ancestors($post->ID));
      return $ancestors[0];
   }
   return $post->ID;
}

// Get submenu items (insert in page submenu)
$args = array(
   'child_of' => get_top_parent(),
   'title_li' => ''
);

wp_list_pages($args);