How to Hide the "weMail" Admin Menu

function plt_hide_wemail_menus() {
	//Hide the "weMail" menu.
	remove_menu_page('wemail');
}

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

Where do I put this code?