こんにちは、新しい投稿タイプを作成しようとしています。分類法を登録しているときに、カテゴリ パネルではなくタグ パネルが表示されることに気付きました。コードは次のとおりです。
function portfolio_filter(){
register_taxonomy("filter",
array("portfolio"),
array(
"hierarchical => true",
"label" => "Filter",
"singular_label" => "Filter",
"rewrite" => array(
'slug' => 'filter',
'hierarchical' => true
)
));
}
add_action('init' ,'portfolio_filter' , 0);
How can I get the category panel instead of the tag panel?