Hi
I added a profile menu page
add_menu_page('Profile', 'Profile', 'manage_options', 'my-profile', 'school_profile_options','',2);
function school_profile_options() {
echo "Profile";
}
It works nice when logged in as admin. But doesn't show when logged in as an editor. Am I doing something wrong here?
How can it be showned to editors or authors?