How to Hide the "Ultra Excerpts" Admin Menu

function plt_hide_ultra_excerpts_menus() {
	//Hide the "Settings → Ultra Excerpts" menu.
	remove_submenu_page('options-general.php', 'ultra_excerpts');
}

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

Where do I put this code?