カスタム投稿をメニューに追加
/functions/custom_post_add
<?php
// カスタム投稿の設定
function create_post_type() {
register_post_type(
'seminor',
array(
'label' => 'セミナーの予定',
'public' => true,
'has_archive' => true,
'show_in_rest' => true,
'menu_position' => 4,
'supports' => array(
'title',
'editor',
'thumbnail',
'revisions',
),
)
);
}