Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: count wp_nav_menu items
    $menu_to_count = wp_nav_menu(array(
    	'echo' => false,
    	'theme_location' => 'menu'
    	));
    $menu_items = substr_count($menu_to_count,'class="menu-item ');
    echo $menu_items;

    This should work. Change the theme_location to what your menu is called.

    Greetings,
    Chiel Robben

Viewing 1 replies (of 1 total)