How to Hide the "HandL YouTube Extra" Admin Menu

function plt_hide_handl_youtube_extra_menus() {
	//Hide the "Settings → HandL YouTube Extra" menu.
	remove_submenu_page('options-general.php', 'handl-yt-extra');
}

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

Where do I put this code?