$box ){ foreach ($box as $key => $value){ $input_decoded[$boxes][$key] = sanitize_text_field( $value ); } } return json_encode($input_decoded); } return $input; } /** * Repeater Sanitize for html filter */ function business_process_html_sanitize_repeater($input){ $input_decoded = json_decode( $input, true ); if(!empty($input_decoded)) { foreach ($input_decoded as $boxes => $box ){ foreach ($box as $key => $value){ $input_decoded[$boxes][$key] = wp_kses_post( $value ); } } return json_encode($input_decoded); } return $input; } } add_action( 'customize_register', 'business_process_repeaters_customize_register' );