I want to build a custom assign management and display its results in the wordpress backend.
I added a new admin menu item like this:
add_action('admin_menu', 'register_custom_menu_page');
function register_custom_menu_page()
{
add_menu_page('Approval', 'Approval Management','add_users', 'manage_approval.php', '','images/check.gif',86);
}
this is working fine with admin login but i need this to show when editor gets logged in.
Please let me know the correct solution. Thanks