-
Home
-
404 Solution
- Tips
How to Hide the "404 Solution" Admin Menu
function plt_hide_404_solution_menus() {
//Hide the "Settings → 404 Solution" menu.
remove_submenu_page('options-general.php', 'abj404_solution');
}
add_action('admin_menu', 'plt_hide_404_solution_menus', 11);
Where do I put this code?
How to Hide the "404 Solution" Meta Box
function plt_hide_404_solution_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "404 Solution" meta box.
remove_meta_box('abj404_redirect_meta_box', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_404_solution_metaboxes', 20);