2014-01-29 42 views
0

是否可以在wordpress菜單中獲得前三項?獲取wordpress中菜單項的數量

例如我有這些菜單。

首頁關於物業搜索禮賓部聯繫

,我想ONY第3個菜單。

非常感謝您的幫助。

+0

檢查這個答案http://stackoverflow.com/a/37959604/1153703 –

回答

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; 
    } 
    }