| | 462 | /** |
| | 463 | * Remove an already registered taxonomy from an object type. |
| | 464 | * |
| | 465 | * @package WordPress |
| | 466 | * @subpackage Taxonomy |
| | 467 | * @since 3.5 |
| | 468 | * @uses $wp_taxonomies Modifies taxonomy object |
| | 469 | * |
| | 470 | * @param string $taxonomy Name of taxonomy object |
| | 471 | * @param string $object_type Name of the object type |
| | 472 | * @return bool True if successful, false if not |
| | 473 | */ |
| | 474 | function unregister_taxonomy_from_object_type($taxonomy, $object_type) { |
| | 475 | |
| | 476 | global $wp_taxonomies; |
| | 477 | |
| | 478 | if ( !isset($wp_taxonomies[$taxonomy]) ) |
| | 479 | return false; |
| | 480 | |
| | 481 | if ( ! get_post_type_object($object_type) ) |
| | 482 | return false; |
| | 483 | |
| | 484 | foreach (array_keys($wp_taxonomies[$taxonomy]->object_type) as $array_key) { |
| | 485 | if ($wp_taxonomies[$taxonomy]->object_type[$array_key] == $object_type) { |
| | 486 | unset ($wp_taxonomies[$taxonomy]->object_type[$array_key]); |
| | 487 | return true; |
| | 488 | } |
| | 489 | } |
| | 490 | return false; |
| | 491 | |
| | 492 | } |