-
Home
-
BreadcrumbsPress
- Tips
function plt_hide_breadcrumbspress_menus() {
//Hide the "Settings → BreadcrumbsPress" menu.
remove_submenu_page('options-general.php', 'breadcrumbspress');
//Hide the "Settings → Support Forum" menu.
remove_submenu_page('options-general.php', 'breadcrumbspress-wp-support-forum');
//Hide the "Settings → Upgrade" menu.
remove_submenu_page('options-general.php', 'breadcrumbspress-pricing');
}
add_action('admin_menu', 'plt_hide_breadcrumbspress_menus', 1000000000);
Where do I put this code?