<!--REGISTER POST-TYPE-->
<?php
function create_post_type() {
register_post_type( 'product',
array(
'labels' => array(
'name' => 'Products',
'singular_name' => 'Product',
),
'menu_position' => '',
'menu_icon' => 'dashicons-admin-page',
'public' => true,
'rewrite' => 'products',
'has_archive' => true,
'supports' => array('title', 'editor', 'thumbnail'),
)
);
}
add_action('init', 'create_post_type');
?>
<!--REGISTER TAXONOMY-->
<?php
function custom_taxonomy_for_site() {
register_taxonomy(
'brend', 'product', //первое айдишик, второе к какому post-type
array(
'label' => 'Бренд',
'public'=> true,
'rewrite' => false,
'hierarchical' => true,
)
);
register_taxonomy(
'color', 'product', //первое айдишик, второе к какому post-type
array(
'label' => 'Цвет',
'public'=> true,
'rewrite' => false,
'hierarchical' => true,
)
);
}
add_action( 'init', 'custom_taxonomy_for_site' );
?>
mytypes - это зарегестрированный taxonomy
вот как я вывожу