-
Home
-
MP AI Content Generator
- Tips
How to Hide the "AI Content Gen" Admin Menu
function plt_hide_mp_ai_content_generator_menus() {
//Hide the "AI Content Gen" menu.
remove_menu_page('mp-ai-plugin-settings');
}
add_action('admin_menu', 'plt_hide_mp_ai_content_generator_menus', 11);
Where do I put this code?
How to Hide the "AI Content Generator" Meta Box
function plt_hide_mp_ai_content_generator_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "AI Content Generator" meta box.
remove_meta_box('mp_ai_content_box', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_mp_ai_content_generator_metaboxes', 20);