Wordpress - 访问单个插件
Wordpress - Access to single plugin
我需要允许编辑器(角色)使用 "WP All Export" 插件。
我正在尝试使用此代码解决我的问题:
add_options_page('WP All Export Pro', 'All Export', 'edit_posts', 'pmxe-admin-manage', 'wp-all-export-pro_options');
但它对我不起作用...
我是 WP 的新手,我们将不胜感激。
尝试安装这个 wordpress 插件。希望它能帮助您解决问题而无需自己编写代码
https://wpfront.com/user-role-editor-pro/
购买此 https://wordpress.org/plugins/admin-menu-editor/ 的许可证允许您添加额外的功能。您甚至可以更改管理员的命名 menus/submenus 许多额外功能 :) 我只能告诉您它完全值得
如本文所述post,
You need to set the proper capability, third parameter in the add_option_page() function which you would have used to create the menu.
http://codex.wordpress.org/Function_Reference/add_options_page
那么,您需要做的就是设置正确的能力。
我认为能力是:'manage_options'。 (看第145行here)
但也许是 pmxe-manage-options?
仅当用户具有该功能时,插件才会注册选项页面。
我需要允许编辑器(角色)使用 "WP All Export" 插件。 我正在尝试使用此代码解决我的问题:
add_options_page('WP All Export Pro', 'All Export', 'edit_posts', 'pmxe-admin-manage', 'wp-all-export-pro_options');
但它对我不起作用... 我是 WP 的新手,我们将不胜感激。
尝试安装这个 wordpress 插件。希望它能帮助您解决问题而无需自己编写代码
https://wpfront.com/user-role-editor-pro/
购买此 https://wordpress.org/plugins/admin-menu-editor/ 的许可证允许您添加额外的功能。您甚至可以更改管理员的命名 menus/submenus 许多额外功能 :) 我只能告诉您它完全值得
如本文所述post,
You need to set the proper capability, third parameter in the add_option_page() function which you would have used to create the menu.
http://codex.wordpress.org/Function_Reference/add_options_page
那么,您需要做的就是设置正确的能力。
我认为能力是:'manage_options'。 (看第145行here)
但也许是 pmxe-manage-options?
仅当用户具有该功能时,插件才会注册选项页面。