How Can I remove or hide the export page in WordPress menu?
Whenever in doubt about a WordPress function, consult the Codex: Function_Reference/remove_menu_page. The correct function is remove_submenu_page hooked into admin_menu. add_action( ‘admin_menu’, ‘remove_submenu_wpse_82873’ ); function remove_submenu_wpse_82873() { global $current_user; get_currentuserinfo(); // If user not Super Admin remove export page if ( !is_super_admin() ) { remove_submenu_page( ‘tools.php’, ‘export.php’ ); } } And then you’d probably would like … Read more