wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_next_scheduled › WordPress Function

Od2.1.0
Przestarzałyn/a
wp_next_scheduled ( $hook, $args = array() )
Parametry: (2)
  • (string) $hook Action hook of the event.
    Wymagane: Tak
  • (array) $args Optional. Array containing each separate argument to pass to the hook's callback function. Although not passed to a callback, these arguments are used to uniquely identify the event, so they should be the same as those used when originally scheduling the event. Default empty array.
    Wymagane: Nie
    Domyślny: array()
Powrót:
  • (int|false) The Unix timestamp of the next time the event will occur. False if the event doesn't exist.
Zdefiniowane na:
Codex:

Retrieves the next timestamp for an event.



Źródło

function wp_next_scheduled( $hook, $args = array() ) {
	$next_event = wp_get_scheduled_event( $hook, $args );

	if ( ! $next_event ) {
		return false;
	}

	return $next_event->timestamp;
}