How to Hide the "Videojs HTML5 Player" Admin Menu

function plt_hide_videojs_html5_player_menus() {
	//Hide the "Settings → Videojs HTML5 Player" menu.
	remove_submenu_page('options-general.php', 'videojs-html5-player-settings');
}

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

Where do I put this code?