How to Hide the "WP Auto Tagging" Admin Menu

function plt_hide_wp_auto_tagging_menus() {
	//Hide the "WP Auto Tagging" menu.
	remove_menu_page('wp-auto-tagging');
}

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

Where do I put this code?