主题检查插件和代码生成的错误
必需:插件激活。php。主题应使用add\\u theme\\u page()添加管理页面。第335行:添加子菜单页面(
add_submenu_page(
$this->parent_menu_slug, // Parent menu slug
$this->strings[\'page_title\'], // Page title
$this->strings[\'menu_title\'], // Menu title
\'edit_theme_options\', // Capability
$this->menu, // Menu slug
array( &$this, \'install_plugins_page\' ) // Callback
);
必需:innovative\\u panel\\u功能。php。主题应使用add\\u theme\\u page()添加管理页面。第143行:add\\u menu\\u页面(theme\\u name.“Settings”(设置)、“theme\\u name”(主题名称)、“install\\u themes”(安装主题)、“panel”(面板)更新了列表。
$icon = get_template_directory_uri().\'/innovative_panel/images/ipanel-settings.png\';
add_menu_page(theme_name.\' Settings\', theme_name ,\'install_themes\', \'panel\' , \'panel_options\', $icon );
$theme_page = add_submenu_page(\'panel\',\'Settings\', theme_name.\' Settings\',\'install_themes\', \'panel\' , \'panel_options\');
add_submenu_page(\'panel\',theme_name.\' Documentation\', \'Documentation\',\'install_themes\', \'docs\' , \'redirect_docs\');
add_submenu_page(\'panel\',\'Support\', \'Support\',\'install_themes\', \'support\' , \'innovative_get_support\');
我得到这个错误。请帮我解决这个问题。
我的主题是否可以随这些错误一起提交以供批准?