タクソノミー-勤務地
if ( ! function_exists( 'custom_taxonomy' ) ) {
// Register Custom Taxonomy
function custom_taxonomy() {
$labels = array(
'name' => '勤務地',
'singular_name' => '勤務地',
'menu_name' => '勤務地',
'all_items' => '勤務地',
'parent_item' => '',
'parent_item_colon' => '',
'new_item_name' => '新規勤務地',
'add_new_item' => '勤務地の追加',
'edit_item' => '勤務地の編集',
'update_item' => '勤務地を更新',
'view_item' => '勤務地を表示',
'separate_items_with_commas' => '',
'add_or_remove_items' => '',
'choose_from_most_used' => '',
'popular_items' => 'よく使う勤務地',
'search_items' => '勤務地の検索',
'not_found' => '勤務地が見つかりません',
'no_terms' => '勤務地がありません',
'items_list' => '勤務地一覧',
'items_list_navigation' => '',
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
'show_in_rest' => true,
);
register_taxonomy( 'location', array( 'post' ), $args );
}
add_action( 'init', 'custom_taxonomy', 0 );
}