-
Home
-
SimpleShare: Auto-posting + Share Buttons for Social
- Tips
How to Hide the "SimpleShare" Admin Menu
function plt_hide_simpleshare_menus() {
//Hide the "Settings → SimpleShare" menu.
remove_submenu_page('options-general.php', 'simpleshare');
}
add_action('admin_menu', 'plt_hide_simpleshare_menus', 11);
Where do I put this code?
How to Hide the "SimpleShare" Meta Box
function plt_hide_simpleshare_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "SimpleShare" meta box.
remove_meta_box('simpleshare', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_simpleshare_metaboxes', 20);