How to Hide the "Transcoder" Admin Menu

function plt_hide_transcoder_menus() {
	//Hide the "Transcoder" menu.
	remove_menu_page('rt-transcoder');
}

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

Where do I put this code?