unregister_taxonomy_for_object_type( string $taxonomy, string $object_type )

Remove an already registered taxonomy from an object type.


Parameters

$taxonomy

(string) (Required) Name of taxonomy object.

$object_type

(string) (Required) Name of the object type.


Return

(bool) True if successful, false if not.


Source

File: wp-includes/taxonomy.php

function unregister_taxonomy_for_object_type( $taxonomy, $object_type ) {
	global $wp_taxonomies;

	if ( ! isset( $wp_taxonomies[ $taxonomy ] ) )
		return false;

	if ( ! get_post_type_object( $object_type ) )
		return false;

	$key = array_search( $object_type, $wp_taxonomies[ $taxonomy ]->object_type, true );
	if ( false === $key )
		return false;

	unset( $wp_taxonomies[ $taxonomy ]->object_type[ $key ] );
	return true;
}


Changelog

Changelog
Version Description
WP-3.7.0 Introduced.