WP_Site_Health::has_late_cron() WordPress Method

The WP_Site_Health::has_late_cron() method is used to check whether the site's cron job is running late. This is useful for checking if the site's scheduled tasks are not running on time.

WP_Site_Health::has_late_cron() #

Check if any scheduled tasks are late.


Description

Returns a boolean value of true if a scheduled task is late and ends processing.

If the list of crons is an instance of WP_Error, returns the instance instead of a boolean value.


Top ↑

Return

(bool|WP_Error) True if a cron is late, false if not. WP_Error if the cron is set to that.


Top ↑

Source

File: wp-admin/includes/class-wp-site-health.php

	public function has_late_cron() {
		if ( is_wp_error( $this->crons ) ) {
			return $this->crons;
		}

		foreach ( $this->crons as $id => $cron ) {
			$cron_offset = $cron->time - time();
			if (
				$cron_offset >= $this->timeout_missed_cron &&
				$cron_offset < $this->timeout_late_cron
			) {
				$this->last_late_cron = $cron->hook;
				return true;
			}
		}

		return false;
	}


Top ↑

Changelog

Changelog
VersionDescription
5.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.