-
Home
-
Tce Sharing
- Tips
How to Hide TCE Sharing Admin Menus
function plt_hide_tce_sharing_menus() {
//Hide the "TCE Sharing" menu.
remove_menu_page('tce-sharing');
//Hide the "TCE Sharing → TCE Sharing" menu.
remove_submenu_page('tce-sharing', 'tce-sharing');
//Hide the "TCE Sharing → Configuration" menu.
remove_submenu_page('tce-sharing', 'tce-sharing-configuration');
}
add_action('admin_menu', 'plt_hide_tce_sharing_menus', 11);
Where do I put this code?
How to Hide the "Upload To TCE" Meta Box
function plt_hide_tce_sharing_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Upload To TCE" meta box.
remove_meta_box('tce-sharing-auto-upload-post', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_tce_sharing_metaboxes', 20);