WP_Post_Type::register_taxonomies()publicWP 4.6.0

Registers the taxonomies for the post type.

Метод класса: WP_Post_Type{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Post_Type = new WP_Post_Type();
$WP_Post_Type->register_taxonomies();

Список изменений

С версии 4.6.0 Введена.

Код WP_Post_Type::register_taxonomies() WP 6.5.2

public function register_taxonomies() {
	foreach ( $this->taxonomies as $taxonomy ) {
		register_taxonomy_for_object_type( $taxonomy, $this->name );
	}
}