WP_Post_Type::unregister_taxonomies()

In this article

Removes the post type from all taxonomies.

Source

public function unregister_taxonomies() {
	foreach ( get_object_taxonomies( $this->name ) as $taxonomy ) {
		unregister_taxonomy_for_object_type( $taxonomy, $this->name );
	}
}

Changelog

VersionDescription
4.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.