-
Home
-
Tricot
- Tips
How to Hide Tricot Admin Menus
function plt_hide_tricot_menus() {
//Hide the "Tricot" menu.
remove_menu_page('tricot');
//Hide the "Tricot → Tricot" menu.
remove_submenu_page('tricot', 'tricot');
//Hide the "Tricot → Setup wizard" menu.
remove_submenu_page('tricot', 'tricot-wizard');
}
add_action('admin_menu', 'plt_hide_tricot_menus', 11);
Where do I put this code?
How to Hide the "Tricot" Meta Box
function plt_hide_tricot_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Tricot" meta box.
remove_meta_box('tricot_post_lang_meta_box', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_tricot_metaboxes', 20);