可能是这个bughttp://core.trac.wordpress.org/ticket/14134 和http://wordpress.org/support/topic/rc32-menus-still-crippled?replies=28 但17个菜单项的门槛很低。
Try raising your php memory allocation 使用FTP:
1) 您可以在php中编辑memory\\u限制行。ini(如果您有权访问该文件)到64M:
memory_limit = 64M;
2) 如果你无法访问php。ini文件,请在顶部添加此行。htaccess文件:
php_value memory_limit 64M
3) 如果这不起作用或引发“500内部服务器错误”,请从中删除该行。htaccess。
然后尝试在wp配置的顶部附近添加下面的行。php文件,就在打开之后<?php
define(\'WP_MEMORY_LIMIT\', \'64M\');
   ;
If you have a php.ini, 同时检查并提高执行时间限制:
max_execution_time = 600
max_input_time = 600
nbsp  ;
If the server is running suhosin, 尝试以下新限制:
suhosin.post.max_vars = 5000
suhosin.request.max_vars = 5000