-
Home
-
LinkBoss – AI-Powered Internal Linking
- Tips
How to Hide the "LinkBoss" Admin Menu
function plt_hide_semantic_linkboss_menus() {
//Hide the "LinkBoss" menu.
remove_menu_page('semantic-linkboss');
}
add_action('admin_menu', 'plt_hide_semantic_linkboss_menus', 11);
Where do I put this code?
How to Hide the "LinkBoss – Semantic Internal Linking" Dashboard Widget
function plt_hide_semantic_linkboss_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "LinkBoss – Semantic Internal Linking" widget.
remove_meta_box('bdkoder-dashboard-overview', 'dashboard', 'column4');
}
add_action('wp_dashboard_setup', 'plt_hide_semantic_linkboss_dashboard_widgets', 20);