How to Hide the "Nice YouTube Lite" Admin Menu

function plt_hide_nice_youtube_lite_menus() {
	//Hide the "Settings → Nice YouTube Lite" menu.
	remove_submenu_page('options-general.php', 'niceYouTubeLite.php');
}

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

Where do I put this code?