How to Hide the "HxLoad Player" Admin Menu

function plt_hide_hxload_player_menus() {
	//Hide the "HxLoad Player" menu.
	remove_menu_page('hxloadplayer.php');
}

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

Where do I put this code?