Reputation: 3875
Happy new year to everyone. I added a new link in my wordpress. The url is wp-admin/users.php?page=business&user_id=2
but when I access the page is says You do not have sufficient permissions to access this page.
I know that the page is not created yet business How will I create new page so that I can work on page=business
?
Upvotes: 0
Views: 61
Reputation: 746
It is really that easy please add the following code. Let me know if you require more help.
add_action('admin_menu', 'adminMenus');
function adminMenus(){
add_submenu_page( 'users.php', 'Business Page Title', 'My Business Menu', 'manage_options', 'business', 'businessPageFunction');
}
function businessPageFunction(){
echo "Meow...";
}
For more information View Function Reference/add submenu page and Plugin API/Action Reference/admin menu
Upvotes: 1