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

    (@mariovalney)

    Hi. For sure.
    You can use a filter to change request arguments.

    ctz_post_request_args

    add_filter( 'ctz_post_request_args', 'radkosedlak_ctz_post_request_args' );
    function radkosedlak_ctz_post_request_args( $args ) {
        $args['method'] = 'PUT';
    
        return $args;
    }
    Thread Starter radkosedlak

    (@radkosedlak)

    Wow, that was quick. Thank you, Mario!

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