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