-
Home
-
ClearPost – AI Auto Blogging & SEO Agent for WordPress
- Tips
How to Hide the "ClearPost AI" Admin Menu
function plt_hide_clearpost_simple_ai_auto_post_menus() {
//Hide the "ClearPost AI" menu.
remove_menu_page('saiap');
}
add_action('admin_menu', 'plt_hide_clearpost_simple_ai_auto_post_menus', 11);
Where do I put this code?
How to Hide the "ClearPost - SEO AI Agent, Content Generator and MCP" Dashboard Widget
function plt_hide_clearpost_simple_ai_auto_post_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "ClearPost - SEO AI Agent, Content Generator and MCP" widget.
remove_meta_box('saiap_dashboard_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_clearpost_simple_ai_auto_post_dashboard_widgets', 20);