Ali Zia
Ali Zia

Reputation: 3875

I want to add a new wordpress page

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

Answers (1)

VijayNaidu
VijayNaidu

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

Related Questions