Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building a WordPress plugin and I'd like to have an edit-item page that can't be reached via the submenu (because then the item wouldn't be specified).

This resource (http://codex.wordpress.org/Adding_Administration_Menus) shows how to associate an admin page with a function, but not how to do so without adding it as a menu item.

Can this be done?

Thanks!

share|improve this question

4 Answers

up vote 4 down vote accepted

Yes, this can be done (well, technically, it would be more like registering the whole thing and then removing the menu item later), but It would just be easiest (I think) to check for parameters in the $_GET superglobal to indicate that the user wishes to edit a specific item. For example, you could have a page that lists items to edit, and clicking 'edit' only adds the item's ID to the current URL. In the function that displays this page, if ID is defined, give them the page to edit that item. Otherwise, give them the list view. That's how posts, pages, and other custom post types do it.

share|improve this answer

Best solution here http://wordpress.org/support/topic/add-backend-page-without-menu-item use add_submenu_page with parent slug = null

share|improve this answer

Yes. It is very possible to make a page cannot be reach via submenu, or even the main menu in the WP admin panel. See the code snippet below.

function myplugin_render_edit_page() {
    // Code contains the UI for edit page.
}

/**
 * Manage menu items and pages.
 */
function myplugin_register_admin_page() {
    global $_registered_pages;

    $menu_slug = plugin_basename('myplugin.php');
    $hookname = get_plugin_page_hookname($menu_slug,'');
    if (!empty($hookname)) {
        add_action($hookname, 'myplugin_render_edit_page');
    }
    $_registered_pages[$hookname] = true;
}
add_action('admin_menu', 'myplugin_register_admin_page');

Hopefully, this will help.

share|improve this answer
1  
how would you link to this from another admin page? – Thomas Clayson Jul 7 '11 at 15:28
2  
helpful, but you probably should not be directly editing $_registered_pages, it's not future-proof – dwenaus May 21 '12 at 23:09

add_submenu_page with parent slug = null

OR

add_submenu_page with menu title = null

share|improve this answer
Verified your method. Works fine: add_submenu_page(NULL,'Page Title','Page Title','add_user','slug/to/new/page'); – Grant Kimball Mar 29 at 16:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.