// お知らせ(news)カスタム投稿タイプ function create_news_post_type() { register_post_type('news', array( 'labels' => array( 'name' => 'お知らせ', 'singular_name' => 'お知らせ' ), 'public' => true, 'has_archive' => true, 'menu_position' => 5, 'supports' => array('title', 'editor', 'thumbnail', 'excerpt'), 'show_in_rest' => true )); } add_action('init', 'create_news_post_type');