How to Hide the "Social Warfare" Admin Menu

function plt_hide_social_warfare_menus() {
	//Hide the "Social Warfare" menu.
	remove_menu_page('social-warfare');
}

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

Where do I put this code?