How to Hide the "Breadcrumb NavXT" Admin Menu

function plt_hide_breadcrumb_navxt_menus() {
	//Hide the "Settings → Breadcrumb NavXT" menu.
	remove_submenu_page('options-general.php', 'breadcrumb-navxt');
}

add_action('admin_menu', 'plt_hide_breadcrumb_navxt_menus', 11);

Where do I put this code?