I can not add more than 15 menu items. Why?
-
I am using the WP3, put the following code in functions.php:
if (function_exists('add_theme_support')) { add_theme_support('nav-menus'); } add_action( 'init', 'register_my_menus' ); function register_my_menus() { register_nav_menus( array( 'menu-cabecalho' => __('Menu Cabecalho'), 'menu-categorias' => __('Menu Categorias'), 'menu-rodape' => __('Menu Rodape') ) ); }
And in their places where I want to have the menu in my theme, I put the following code:
<?php wp_nav_menu( array( 'theme_location' => 'menu-cabecalho', 'menu_class' => 'nav clearfix' ) ); ?> <?php wp_nav_menu( array( 'theme_location' => 'menu-categorias', 'menu_class' => 'superfish nav clearfix' ) ); ?> <?php wp_nav_menu( array( 'theme_location' => 'menu-rodape', 'menu_class' => 'superfish nav clearfix' ) ); ?>
But do not believe the problem is there because the administration panel, which sets up the menu, under Appearance, I can not add more than 15 items in any of the menus.
In fact, even get by, but when you click save, they are the first 15 items and the others disappear.
I tried to do the same in the default theme and the problem persists
Anyone idea what can be?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘I can not add more than 15 menu items. Why?’ is closed to new replies.