’usces_filter_order_list_header’の引数の値を調べようと、
下記のコードで試したのですが、ログが出力されません。
add_filter( ‘usces_filter_order_list_header’, ‘my_filter_order_list_header’, 10, 2 );
function my_filter_order_list_header( $list_header, $arr_header) {
echo ‘<script>console.log(‘. json_encode( $list_header) .’);</script>’;
echo ‘<script>console.log(‘. json_encode( $arr_header) .’);</script>’;
}
フックの場所がちがうのでしょうか?