Role can edit just one page [closed]
Adminimize does not remove menu items etc, it just keeps them visually hidden. In other words, your admin pages is still accessible. Add this code to your functions.php file: add_action(‘admin_menu’, ‘edit_trustees_page’); function edit_trustees_page() { global $submenu; $trustees_page_id = 1; //change this value $url = get_admin_url() . ‘post.php?post=” . $trustees_page_id . “&action=edit’; $submenu[‘index.php’][] = array( ‘Edit … Read more