Reputation: 13
im having a small problem with menu in wordpress i cant able to place more than 60 items in the menu, It is adding but when i click save button the particular menu items are not displaying in the wordpress menu if it exceed 60 items in menu. Im using ultimatum theme, So can you please help me out for sloving this issue here is my site url http://www.thetwelfthfruit.com/ in the above site in header menu after (help) i am unable to add any other menu item in the header, when i am adding menu 1 item in the middle of menu the bottom menu item (ie Help) is getting deleted.
and i have tried below code in htaccess
i have given php_value max_input_vars 5000 but this is not working.
Upvotes: 0
Views: 276
Reputation: 13
first create php.ini file, then copy the below code into that
max_input_vars = 3000;
suhosin.get.max_vars = 3000;
suhosin.post.max_vars = 3000;
suhosin.request.max_vars = 3000;
save the file and that's it, the magic will be done....!!!!!!
Upvotes: 1
Reputation: 131
Check Server Configuration using
<?php php_info(); ?>
And also Please Refer the link:
http://sevenspark.com/wordpress/menu-item-limit
I think it will help you.
Upvotes: 0