-
Home
-
DeepL API translation plugin
- Tips
How to Hide the "DeepL translation" Admin Menu
function plt_hide_wpdeepl_menus() {
//Hide the "Settings → DeepL translation" menu.
remove_submenu_page('options-general.php', 'deepl_settings');
}
add_action('admin_menu', 'plt_hide_wpdeepl_menus', 16);
Where do I put this code?
How to Hide the "DeepL translation" Meta Box
function plt_hide_wpdeepl_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "DeepL translation" meta box.
remove_meta_box('deepl_metabox', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_wpdeepl_metaboxes', 20);