我在一个单独的字段中创建了两个小的 wordpress 插件。该菜单标题显示在管理页面的设置下因为我创建了这个
add_submenu_page('options-general.php','Fantastic Copyright by FantasticPlugins.com', 'Fantastic Copyright', 'manage_options', 'copyright_admin', 'copyright_admin_page');
这是管理员端的屏幕截图。
现在我想在一个通用菜单中显示我的个人插件。即使我尝试为我在谷歌搜索和添加的插件创建菜单和子菜单。
add_menu_page('My Test Plugin Settings', 'Test Plugin',IC_MYPLUGIN_PERMISSIONS,"my-plugin-slug", "ic_myplugin_settings",plugins_url('fp.ico', __FILE__));
// create a new submenu
add_submenu_page(
"my-plugin-slug",
__("This is page title for the page"),
__("Settings"),
IC_MYPLUGIN_PERMISSIONS,
"my-plugin-slug",
"ic_myplugin_settings"
);
add_submenu_page(
"my-plugin-slug",
__("This is page title for items page"),
__("Items"),
IC_MYPLUGIN_PERMISSIONS,
"my-plugin-slug-items",
"ic_myplugin_items"
);
add_submenu_page(
"my-plugin-slug",
__("This is page title for add item page"),
__("Add Item"),
IC_MYPLUGIN_PERMISSIONS,
"my-plugin-slug-add-item",
"ic_myplugin_add_item"
);
}
来自 Picture Test Plugin 是常用菜单 在我们创建的手动子菜单中。现在我需要知道如何将单个插件添加到测试插件的子菜单页面中。我需要使菜单独立。例如,如果我为 wordpress 创建插件。在那我们创建图像库作为单独的插件和视频库作为单独的插件。
Wordpress --> Is the Main Menu
Image Gallery --> Is the sub Menu and Seperate Plugin
Video Gallery --> Is the sub menu and seperate Plugin
像那样我需要展示。无论我为 wordpress 创建的插件都在 wordpress 的公共主菜单下。任何人告诉我我该怎么做这些东西?