wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_cron › WordPress Function

Depuis2.1.0
Dépréciéen/a
wp_cron ( Pas de paramètres )
Retourne:
  • (false|int|void) On success an integer indicating number of events spawned (0 indicates no events needed to be spawned), false if spawning fails for one or more events or void if the function registered _wp_cron() to run on the action.
Défini(e) dans:
Codex:
Changelog:
  • 5.1.0
  • 5.7.0

Registers _wp_cron() to run on the {@see 'wp_loaded'} action.

If the {@see 'wp_loaded'} action has already fired, this function calls _wp_cron() directly. Warning: This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE. For information about casting to booleans see the {@link PHP documentation}. Use the === operator for testing the return value of this function.


Fonctions en relation: _wp_cron, wp_clone, wp_rand, spawn_cron, wp_doing_cron

Source

function wp_cron() {
	if ( did_action( 'wp_loaded' ) ) {
		return _wp_cron();
	}

	add_action( 'wp_loaded', '_wp_cron', 20 );
}