How to Hide HTML5 Lyrics Karaoke Player Admin Menus

function plt_hide_html5_lyrics_karaoke_player_menus() {
	//Hide "HTML5 Lyrics Player".
	remove_menu_page('html5lyrics-options');
	//Hide "HTML5 Lyrics Player → Manage Songs".
	remove_submenu_page('html5lyrics-options', 'html5lyrics_songs');
	//Hide "HTML5 Lyrics Player → Saved Songs".
	remove_submenu_page('html5lyrics-options', 'html5lyrics_saved_song');
	//Hide "HTML5 Lyrics Player → Help".
	remove_submenu_page('html5lyrics-options', 'html5lyrics_help');
}

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

Where do I put this code?