メンテナンス中です。
現在サイトを大規模リニューアルしております。
リニューアル完了までしばらくお待ちください。
web長浜はこちら
https://webnagahama.com/
add_action('init', function(){ register_post_type('event', [ 'label' => 'イベント', 'labels' => [ 'name' => 'イベント', 'singular_name' => 'イベント', 'add_new' => '新規追加', 'add_new_item' => 'イベントを追加', 'edit_item' => 'イベントを編集', 'all_items' => 'イベント一覧' ], 'public' => true, 'has_archive' => 'events', 'rewrite' => ['slug' => 'event', 'with_front' => false], 'menu_icon' => 'dashicons-calendar-alt', 'supports' => ['title','editor','excerpt','thumbnail','author','revisions'], 'show_in_rest' => true, ]); // タクソノミー:ジャンル register_taxonomy('event_cat', ['event'], [ 'label' => 'ジャンル', 'hierarchical' => true, 'rewrite' => ['slug' => 'event-cat', 'with_front' => false], 'show_in_rest' => true, ]); // タクソノミー:エリア(例:中心市街地/湖北/木之本/余呉/高月 等は後でGUIで作成) register_taxonomy('area', ['event'], [ 'label' => 'エリア', 'hierarchical' => true, 'rewrite' => ['slug' => 'area', 'with_front' => false], 'show_in_rest' => true, ]); // タグ(任意) register_taxonomy('event_tag', ['event'], [ 'label' => 'タグ', 'hierarchical' => false, 'rewrite' => ['slug' => 'event-tag', 'with_front' => false], 'show_in_rest' => true, ]); });
現在サイトを大規模リニューアルしております。
リニューアル完了までしばらくお待ちください。
web長浜はこちら
https://webnagahama.com/