Advertisement
Guest User

Untitled

a guest
Apr 6th, 2022
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. // Extend timeout on wp_remote_get to 90 seconds
  3. add_filter('http_request_args', function($args){
  4.     // increase timeout to 90 seconds
  5.     $args['timeout'] = 90;
  6.     return $args;
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement