Woocommerce에서 상태별 및 사용자 정의 ACF 필드별 주문 수 표시 저는 현재 상태와 계정 관리자별로 분할된 주문이 얼마나 있는지 보여주기 위해 일종의 내부 '플러그인' 작업을 하고 있습니다.그래서 다음과 같은 표로 제시하고자 합니다. Account Manager | No of pending orders | No of canceled orders etc 나는 그런 코드가 있습니다. function display_woocommerce_order_count( $atts, $content = null ) { $args = shortcode_atts( array( 'status' => 'completed', ), $atts ); $statuses = array_map( 'trim', explode( '..