How to Hide the "JW Player" Admin Menu

function plt_hide_jw_player_7_for_wp_menus() {
	//Hide the "JW Player" menu.
	remove_menu_page('jw-player-for-wp');
}

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

Where do I put this code?