How to Hide the "Category Management" Admin Menu

function plt_hide_real_category_library_lite_menus() {
	//Hide the "Settings → Category Management" menu.
	remove_submenu_page('options-general.php', 'real-category-library-lite-component');
}

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

Where do I put this code?