Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mário Valney

    (@mariovalney)

    Yes. You can use the ctz_post_request_args filter.

    Here is an example:

    <?php
    
    add_filter( 'ctz_post_request_args', 'oilbanker_ctz_post_request_args' );
    function oilbanker_ctz_post_request_args( $args ) {
        $args['headers']['Your-Custom-Header'] = 'value';
    
        return $args;
    }
    Thread Starter oilbanker

    (@oilbanker)

    thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Headers & Authentication’ is closed to new replies.