最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - Submenu Page under Settings in Admin Panel

programmeradmin2浏览0评论

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
Add a comment  | 

1 Answer 1

Reset to default 0

I 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
}
发布评论

评论列表(0)

  1. 暂无评论