Hamatora FES ( 出展情報 )
Coming Soon…
function create_exhibitor_post_type() { register_post_type(‘exhibitor’, array( ‘labels’ => array( ‘name’ => ‘出展者’, ‘singular_name’ => ‘出展者’ ), ‘public’ => true, ‘has_archive’ => true, ‘menu_position’ => 5, ‘menu_icon’ => ‘dashicons-store’, ‘supports’ => array(‘title’, ‘thumbnail’), ‘rewrite’ => array(‘slug’ => ‘exhibitor’), ) ); register_taxonomy( ‘exhibitor_category’, ‘exhibitor’, array( ‘label’ => ‘カテゴリー’, ‘hierarchical’ => true, ‘rewrite’ => array(‘slug’ => ‘exhibitor-category’), ) ); } add_action(‘init’, ‘create_exhibitor_post_type’);