WP_Post_Type::register_taxonomies()

In this article

Registers the taxonomies for the post type.

Source

public function register_taxonomies() {
	foreach ( $this->taxonomies as $taxonomy ) {
		register_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.