-
Home
-
Link in Bio Creator – Social
- Tips
How to Hide Social Admin Menus
function plt_hide_social_lite_menus() {
//Hide the "Social" menu.
remove_menu_page('social-lite');
//Hide the "Social → Social" menu.
remove_submenu_page('social-lite', 'social-lite');
//Hide the "Social → Upgrade ➤" menu.
remove_submenu_page('social-lite', 'social-lite-upgrade');
}
add_action('admin_menu', 'plt_hide_social_lite_menus', 1000000000);
Where do I put this code?
How to Hide Social Meta Boxes
function plt_hide_social_lite_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Data" meta box.
remove_meta_box('cms-landingpage-data', $screen->id, 'normal');
//Hide the "Analytics" meta box.
remove_meta_box('cms-landingpage-analytics', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_social_lite_metaboxes', 20);