• Hi guys, was just wondering if it’s possible to write plugin code to add a submenu under the top level item ‘write’.

    There’s code for pages under the ‘manage’ item:

    add_management_page(page_title, menu_title, access_level/capability, file, [function]);

    But I couldn’t find anything about the ‘write’ item. Any help would be greatly appreciated! Thanks in advance.

    – Arthur

    PS. crap, posted in the wrong forum and no way to move it..

Viewing 1 replies (of 1 total)
  • function plugin_menu () {
    add_submenu_page('post-new.php', 'Plugin', 'Plugin', 9, basename(__FILE__), 'plugin_form');
    }
Viewing 1 replies (of 1 total)

The topic ‘Add admin submenu under ‘write’’ is closed to new replies.