There is plugin called Shopp in my WP admin page , this plugin has got top level menu "Shopp" .

This is the top level menu:

$menus['main'] = add_menu_page('Shopp', 'Shopp', SHOPP_USERLEVEL, 'shopp-orders', array(&$this,'orders'));

And I've created some plugin which need to add as submenu under "Shopp" top level menu , so it is adding sub menu ( link .....wp-admin/admin.php?page=ach-faq.php ) but when I am clicking on submenu it shows "You do not have sufficient permissions to access this page."

Debug result:

Pagenow = admin.php
Parent = shopp-orders
Hookname = shopp_page_ach-faq
Menu = Array
Submenu = Array
Menu nopriv = Array
Submenu nopriv =
Plugin page = ach-faq.php
Registered pages =

My code:

function ach_faq_menu(){
 add_submenu_page('shopp-orders', 'My FAQ Plugin', 'My FAQ Plugin', 8, __FILE__, 'section_1');
}
function section_1(){
 echo 'Text';
}
add_action('admin_menu', 'ach_faq_menu');

How can I fix this ? Please help me !

link|improve this question
feedback

2 Answers

Menu and submenu pages should be called at the same time, and use the same slugs. For example

add_action("admin_menu", "createMyMenus");

function createMyMenus() {
    add_menu_page("My Menu", "My Menu", 0, "my-menu-slug", "myMenuPageFunction");
    add_submenu_page("my-menu-slug", "My Submenu", "My Submenu", 0, "my-submenu-slug", "mySubmenuPageFunction");
}

This would result in a top-level menu "My Menu" with a child of "My Submenu".

The invalid permissions error seems to crop up when you use FILE for the submenu-slug.

link|improve this answer
why is that not in the documentation. It's not obvious that submenu pages need the same slug. – Tim Joyce Dec 29 '11 at 19:08
@TimJoyce They don't need the same slug. Submenus need the parent slug. If you want a default sub-menu, which I don't see why you wouldn't, you need to use the same slug. You can have an action if you were to click on the top level different from all of the sublevel, but that adds confusion. Standard practice is to have first submenu share the slug and its action will override the action of the parent. – Steve Buzonas Feb 28 at 10:05
feedback

You can by adding the plugin folder name and the home page of the plugin. For example I hooked to the Newsletter plugin by:

<?php 

add_action('admin_menu', 'add_newsletter_extra_page');

function add_newsletter_extra_page(){
    add_submenu_page( 
        'newsletter/intro.php', 
        'Newsletter', 
        'Subscribers Plus', 
        1, //$capability, 
        'subscribers-plus',
        'newsletter_list_addon' );
}
?> 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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