Wordpress - disable post tags taxonomy
// from http://stackoverflow.com/questions/4249694/how-do-i-remove-a-taxonomy-from-wordpress/8363082#8363082
function unregister_taxonomy(){
register_taxonomy('post_tag', array());
}
add_action('init', 'unregister_taxonomy');