registrando todas as taxonomias na criação do item
This commit is contained in:
parent
3530d403d8
commit
f1ca439b04
|
@ -68,9 +68,14 @@ class TainacanItems {
|
||||||
'capability_type' => 'post',
|
'capability_type' => 'post',
|
||||||
);
|
);
|
||||||
register_post_type($cpt_slug, $args);
|
register_post_type($cpt_slug, $args);
|
||||||
foreach ($taxonomies as $taxonomy) {
|
$this->register_post_type_taxonomies( $cpt_slug, $taxonomies );
|
||||||
register_taxonomy_for_object_type( $taxonomy, $cpt_slug );
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function register_post_type_taxonomies( $cpt_slug, $taxonomies ){
|
||||||
|
foreach ($taxonomies as $taxonomy) {
|
||||||
|
register_taxonomy_for_object_type( $taxonomy, $cpt_slug );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue