admin管理员组文章数量:1415644
I have a quick question, I am wanting to add in a new submenu to the 'Tools' section on my Admin Panel but without modifying any of the original WordPress files such as (functions.php, etc..) files. So I'm unable to use the functions.php file to input the function call directly.
File Path:
wp-content/mu-plugins/fh-extensions/_functions/actions/instagram.php
Here is the code that I am using:
<?php
/**
* Created by PhpStorm.
* User: smajlovs
* Date: 2019-08-14
* Time: 10:44
*/
/*
* Add in a new submenu to the 'Tools.php' settings
*/
function admin_menu() {
add_action('admin_menu', 'register_my_custom_submenu_page');
function register_my_custom_submenu_page() {
add_submenu_page(
'tools.php',
'Submenu Page',
'My Custom Submenu Page',
'manage_options',
'my-custom-submenu-page',
'my_custom_submenu_page_content' );
}
function my_custom_submenu_page_content() {
?>
<div class="wrap">
<h2>Page Title</h2>
</div>
<?php
}
}
Could anyone let me know why it's not showing up under 'Tools' in the admin panel?
I have a quick question, I am wanting to add in a new submenu to the 'Tools' section on my Admin Panel but without modifying any of the original WordPress files such as (functions.php, etc..) files. So I'm unable to use the functions.php file to input the function call directly.
File Path:
wp-content/mu-plugins/fh-extensions/_functions/actions/instagram.php
Here is the code that I am using:
<?php
/**
* Created by PhpStorm.
* User: smajlovs
* Date: 2019-08-14
* Time: 10:44
*/
/*
* Add in a new submenu to the 'Tools.php' settings
*/
function admin_menu() {
add_action('admin_menu', 'register_my_custom_submenu_page');
function register_my_custom_submenu_page() {
add_submenu_page(
'tools.php',
'Submenu Page',
'My Custom Submenu Page',
'manage_options',
'my-custom-submenu-page',
'my_custom_submenu_page_content' );
}
function my_custom_submenu_page_content() {
?>
<div class="wrap">
<h2>Page Title</h2>
</div>
<?php
}
}
Could anyone let me know why it's not showing up under 'Tools' in the admin panel?
Share Improve this question edited Aug 14, 2019 at 17:30 DevSem 2092 silver badges11 bronze badges asked Aug 14, 2019 at 15:50 SemaSema 1 1- I just answered almost the same question an hour ago. See this link: wordpress.stackexchange/questions/345091/… – user3135691 Commented Aug 14, 2019 at 16:09
1 Answer
Reset to default 0I didn't test this but i'm pretty sure you just need to remove your code from the admin_menu() function declaration.
Like this:
add_action('admin_menu', 'register_my_custom_submenu_page');
function register_my_custom_submenu_page() {
add_submenu_page(
'tools.php',
'Submenu Page',
'My Custom Submenu Page',
'manage_options',
'my-custom-submenu-page',
'my_custom_submenu_page_content' );
}
function my_custom_submenu_page_content() {
?>
<div class="wrap">
<h2>Page Title</h2>
</div>
<?php
}
本文标签: pluginsSubmenu Page under Settings in Admin Panel
版权声明:本文标题:plugins - Submenu Page under Settings in Admin Panel 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745241312a2649344.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论