Adding an admin menu page showing the link twice - how to solve this?

admin2025-01-08  3

Closed. This question is off-topic. It is not currently accepting answers.

Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?

Closed last month.

Improve this question

I'm newbie and I'm trying to create a plugin to add a menu to left menu in admin section. i have create the page but it is working fine. but i find the left menu being displayed twice. how can I resolve the issue. Find below my code:

add_action('admin_menu','user_data');
    function user_data(){
      add_menu_page('User Data','User data','manage_options','user-page','user_data_options');
    }
    function user_data_options(){
        include('user-page.php');
    }
Closed. This question is off-topic. It is not currently accepting answers.

Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?

Closed last month.

Improve this question

I'm newbie and I'm trying to create a plugin to add a menu to left menu in admin section. i have create the page but it is working fine. but i find the left menu being displayed twice. how can I resolve the issue. Find below my code:

add_action('admin_menu','user_data');
    function user_data(){
      add_menu_page('User Data','User data','manage_options','user-page','user_data_options');
    }
    function user_data_options(){
        include('user-page.php');
    }
Share Improve this question edited Jan 14, 2014 at 11:58 Mayeenul Islam 12.9k21 gold badges85 silver badges169 bronze badges asked Jan 14, 2014 at 11:36 user1878508user1878508 212 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Have you added any submenus under this, sub-menus can duplicate the parent menu item. (http://wordpress.org/support/topic/top-level-menu-duplicated-as-submenu-in-admin-section-plugin and many more).

Or do you mean the left menu is duplicated in full? If so it's probably due to an include in your user-page.php file.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1736270309a1419.html

最新回复(0)