プラグインを使わずに、カスタム分類を追加
以下のコードを functions.php に追加する。
[php]
$args = array(
‘label’ => ‘ラベル’,
‘public’ => true,
‘show_ui’ => true,
‘hierarchical’ => true
);
register_taxonomy(‘スラッグ’,’関連付ける投稿タイプ’,$args);
[/php]
以下のコードを functions.php に追加する。
[php]
$args = array(
‘label’ => ‘ラベル’,
‘public’ => true,
‘show_ui’ => true,
‘hierarchical’ => true
);
register_taxonomy(‘スラッグ’,’関連付ける投稿タイプ’,$args);
[/php]