_default_time_limit

_default_time_limit

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wp-stateless.3.4.1

apply_filters('_default_time_limit') is found 1 times:

  • /lib/ns-vendor/classes/deliciousbrains/wp-background-processing/classes/wp-background-process.php line 385
    	 *
    	 * @return bool
    	 */
    	protected function time_exceeded() {
    		$finish = $this->start_time + apply_filters( $this->identifier . '_default_time_limit', 20 ); // 20 seconds
    		$return = false;
    
    		if ( time() >= $finish ) {
    			$return = true;
    		}