-
Home
-
SmartAIPress
- Tips
How to Hide SmartAIPress Admin Menus
function plt_hide_smartaipress_menus() {
//Hide the "SmartAIPress" menu.
remove_menu_page('smartaipress');
//Hide the "SmartAIPress → Dashboard" menu.
remove_submenu_page('smartaipress', 'smartaipress');
//Hide the "SmartAIPress → Settings" menu.
remove_submenu_page('smartaipress', 'smartaipress-settings');
}
add_action('admin_menu', 'plt_hide_smartaipress_menus', 11);
Where do I put this code?
How to Hide the "SmartAIPress" Meta Box
function plt_hide_smartaipress_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "SmartAIPress" meta box.
remove_meta_box('smartaipress_openai_metabox', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_smartaipress_metaboxes', 20);