_cron_interval

_cron_interval

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

See hook in core

Displaying hooks found in version: wp-stateless.3.4.1

apply_filters('_cron_interval') is found 2 times:

  • /lib/ns-vendor/classes/deliciousbrains/wp-background-processing/classes/wp-background-process.php line 416
    	 *
    	 * @return mixed
    	 */
    	public function schedule_cron_healthcheck( $schedules ) {
    		$interval = apply_filters( $this->identifier . '_cron_interval', 5 );
    
    		if ( property_exists( $this, 'cron_interval' ) ) {
    			$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
    		}
    
    		// Adds every 5 minutes to the existing schedules.
    
  • /lib/ns-vendor/classes/deliciousbrains/wp-background-processing/classes/wp-background-process.php line 419
    	public function schedule_cron_healthcheck( $schedules ) {
    		$interval = apply_filters( $this->identifier . '_cron_interval', 5 );
    
    		if ( property_exists( $this, 'cron_interval' ) ) {
    			$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
    		}
    
    		// Adds every 5 minutes to the existing schedules.
    		$schedules[ $this->identifier . '_cron_interval' ] = array(
    			'interval' => MINUTE_IN_SECONDS * $interval,
    			'display'  => sprintf( __( 'Every %d Minutes' ), $interval ),