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