-
Home
-
Companion Auto Update
- Tips
How to Hide the "Auto Updater" Admin Menu
function plt_hide_companion_auto_update_menus() {
//Hide the "Tools → Auto Updater" menu.
remove_submenu_page('tools.php', 'cau-settings');
}
add_action('admin_menu', 'plt_hide_companion_auto_update_menus', 11);
Where do I put this code?
How to Hide the "Update log" Dashboard Widget
function plt_hide_companion_auto_update_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Update log" widget.
remove_meta_box('cau-update-log', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_companion_auto_update_dashboard_widgets', 20);