기존에 넣었던 wholesaler 관련 코드가 있다면 먼저 삭제하고 아래 코드로 교체하세요. // ============================================= // Custom Post Type: 도매사이트 (wholesaler) // ============================================= function register_wholesaler_post_type() { register_post_type( 'wholesaler', [ 'labels' => [ 'name' => '도매사이트', 'singular_name' => '도매사이트', 'menu_name' => '도매사이트', 'add_new' => '새 도매사이트 추가', 'add_new_item' => '새 도매사이트 추가', 'edit_item' => '도매사이트 편집', 'new_item' => '새 도매사이트', 'view_item' => '도매사이트 보기', 'search_items' => '도매사이트 검색', 'not_found' => '도매사이트를 찾을 수 없습니다', 'not_found_in_trash' => '휴지통에 도매사이트가 없습니다', ], 'public' => true, 'has_archive' => true, 'rewrite' => [ 'slug' => 'wholesaler' ], 'menu_icon' => 'dashicons-store', 'supports' => [ 'title', 'editor', 'thumbnail' ], 'show_in_rest' => true, ] ); } add_action( 'init', 'register_wholesaler_post_type' ); // ============================================= // Custom Taxonomy: 도매사이트 카테고리 // ============================================= function register_wholesaler_taxonomy() { register_taxonomy( 'wholesaler_cat', 'wholesaler', [ 'labels' => [ 'name' => '도매 카테고리', 'singular_name' => '도매 카테고리', 'menu_name' => '카테고리', 'all_items' => '전체 카테고리', 'add_new_item' => '새 카테고리 추가', 'edit_item' => '카테고리 편집', 'update_item' => '카테고리 업데이트', 'search_items' => '카테고리 검색', 'not_found' => '카테고리를 찾을 수 없습니다', ], 'hierarchical' => true, 'public' => true, 'show_in_rest' => true, 'rewrite' => [ 'slug' => 'wholesaler-cat' ], 'show_admin_column' => true, ] ); } add_action( 'init', 'register_wholesaler_taxonomy' ); // ============================================= // ACF Local Field Group: 도매사이트 정보 // ============================================= add_action( 'acf/init', function () { if ( ! function_exists( 'acf_add_local_field_group' ) ) { return; } acf_add_local_field_group( [ 'key' => 'group_wholesaler_info', 'title' => '도매사이트 정보', 'fields' => [ [ 'key' => 'field_wholesaler_site_url', 'label' => '사이트 URL', 'name' => 'site_url', 'type' => 'url', 'required' => 0, 'placeholder' => 'https://', ], [ 'key' => 'field_wholesaler_category', 'label' => '카테고리', 'name' => 'category', 'type' => 'select', 'choices' => [ '종합' => '종합', '의류' => '의류', '식품' => '식품', '잡화' => '잡화', '뷰티' => '뷰티', '전자' => '전자', '생활' => '생활', '반려동물' => '반려동물', ], 'default_value' => '', 'allow_null' => 1, 'multiple' => 0, 'ui' => 1, ], [ 'key' => 'field_wholesaler_speciality', 'label' => '전문품목', 'name' => 'speciality', 'type' => 'text', 'placeholder' => '예: 여성의류, 냉동식품', ], [ 'key' => 'field_wholesaler_min_order', 'label' => '최소주문금액', 'name' => 'min_order', 'type' => 'number', 'placeholder' => '숫자만 입력 (원)', 'min' => 0, 'step' => 1000, 'append' => '원', ], [ 'key' => 'field_wholesaler_summary', 'label' => '한줄요약', 'name' => 'summary', 'type' => 'textarea', 'rows' => 3, 'maxlength' => 200, 'placeholder' => '업체 특징을 간략히 입력하세요', ], [ 'key' => 'field_wholesaler_rating', 'label' => '평점', 'name' => 'rating', 'type' => 'number', 'min' => 1, 'max' => 5, 'step' => 1, ], [ 'key' => 'field_wholesaler_tags', 'label' => '태그', 'name' => 'tags', 'type' => 'checkbox', 'choices' => [ '소량가능' => '소량가능', '위탁판매' => '위탁판매', '해외직구' => '해외직구', '빠른배송' => '빠른배송', '무료배송' => '무료배송', ], 'layout' => 'horizontal', 'toggle' => 0, 'return_format' => 'value', ], ], 'location' => [ [ [ 'param' => 'post_type', 'operator' => '==', 'value' => 'wholesaler', ], ], ], 'menu_order' => 0, 'position' => 'normal', 'style' => 'default', 'label_placement' => 'top', 'instruction_placement' => 'label', ] ); } );