php WP-子菜单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WP-子菜单相关的知识,希望对你有一定的参考价值。

// 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);

以上是关于php WP-子菜单的主要内容,如果未能解决你的问题,请参考以下文章