How to Hide the "No Category Base" Admin Menu

function plt_hide_no_category_base_wpml_menus() {
	//Hide the "Settings → No Category Base" menu.
	remove_submenu_page('options-general.php', 'no-category-base-wpml');
}

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

Where do I put this code?