0

是否有可能只获得 wordpress 菜单中的前三个项目?

例如我有这些菜单。

主页 关于 物业搜索 礼宾部 联系方式

我想只获得前 3 个菜单。

非常感谢您的帮助。

4

1 回答 1

0

我不认为有任何论据,但这可以这样做:

   $menu_name = 'custom_menu_slug'; // Get the nav menu based on $menu_name (same as     'theme_location' or 'menu' arg to wp_nav_menu)

    if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $menu_name ] ) ) {
    $menu = wp_get_nav_menu_object( $locations[ $menu_name ] );

    $menu_items = wp_get_nav_menu_items($menu->term_id);
    $count = 0;

    foreach ( (array) $menu_items as $key => $menu_item ) {
      $count++;
      if($count == 3 ) {
        break;
       }
      $title = $menu_item->title;
     }
    }
于 2014-01-29T03:36:55.987 回答