-
Home
-
Copyright Switch
- Tips
How to Hide the "Copyright Switch" Admin Menu
function plt_hide_copyright_switch_menus() {
//Hide the "Copyright Switch" menu.
remove_menu_page('copyright-switch');
}
add_action('admin_menu', 'plt_hide_copyright_switch_menus', 11);
Where do I put this code?
How to Hide the "Copyright Switch" Meta Box
function plt_hide_copyright_switch_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Copyright Switch" meta box.
remove_meta_box('copyright-switch-meta-boxes', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_copyright_switch_metaboxes', 20);