복붙노트

[WORDPRESS] 어떻게 WooCommerce 백엔드 편집 제품 데이터 탭

WORDPRESS

어떻게 WooCommerce 백엔드 편집 제품 데이터 탭

해결법


  1. 1.이것은 다음과 같은 필터 가능하며, 우선 순위 번호를 교환

    이것은 다음과 같은 필터 가능하며, 우선 순위 번호를 교환

    function my_product_data_tabs( $product_data_tabs ) {
        $product_data_tabs['inventory']['priority'] = 10; // first
        $product_data_tabs['general']['priority'] = 20; // second
    
        return $product_data_tabs;
    }
    add_filter( 'woocommerce_product_data_tabs', 'my_product_data_tabs', 10, 1 );
    

    다른 우선 순위 번호

    운송 = 30

    linked_product = 40

    속성 = 50

    변형 = 60

    고급 = 70

  2. from https://stackoverflow.com/questions/59991174/how-to-edit-product-data-tab-in-woocommerce-backend by cc-by-sa and MIT license