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