Follow these steps to remove the Microsoft AutoUpdate application: Open Finder From the menu bar,…
WordPress: Remove support for tags for posts
//post: remove tags
add_action( 'init', 'unregister_tags' );
function unregister_tags() {
unregister_taxonomy_for_object_type( 'post_tag', 'post' );
}