wp_queue_cron_time_limit

wp_queue_cron_time_limit

Hook Type: filter

See hook in core

Displaying hooks found in version: wp-migrate-db.2.6.9

apply_filters('wp_queue_cron_time_limit') is found 1 times:

  • /class/Common/Queue/Cron.php line 185
    	 *
    	 * @return bool
    	 */
    	protected function time_exceeded() {
    		$finish = $this->start_time + apply_filters( 'wp_queue_cron_time_limit', 20 ); // 20 seconds
    		$return = false;
    
    		if ( time() >= $finish ) {
    			$return = true;
    		}