-
Notifications
You must be signed in to change notification settings - Fork 5
AeriaTaxonomy
simmontali edited this page Sep 9, 2019
·
2 revisions
⚠️ Warning: This page refers to Aeria v1, therefore the informations in it are deprecated and will not work on Aeria v3.
Con AeriaTaxonomy è possibile definire tassonomie personalizzate
-
id
id taxonomy -
types
array contentente gli id dei post types a cui si vuole associare la tassonomia -
options
possibilità di definire le opzioni base di una tassonomia di wordpress.
AeriaTaxonomy::register([
'id' => 'categorie_pubblicazioni',
'title' => __('Categorie','mytheme'),
'types' => 'pubblications',
'options' => [
'rewrite' => [
'slug' => __('informati/pubblicazioni/categorie','URL slug','mytheme'),
'hierarchical' => false
],
],
]);
[https://codex.wordpress.org/Function_Reference/register_taxonomy](Go To Codex)