wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_get_schedule › WordPress Function

Da2.1.0
Deprecaton/a
wp_get_schedule ( $hook, $args = array() )
Parametri: (2)
  • (string) $hook Action hook to identify the event.
    Richiesto:
  • (array) $args Optional. Arguments passed to the event's callback function. Default empty array.
    Richiesto: No
    Default: array()
Vedi:
Ritorna:
  • (string|false) Schedule name on success, false if no schedule.
Definito a:
Codex:
ChangeLog:
  • 5.1.0

Retrieves the name of the recurrence schedule for an event.



Sorgenti

function wp_get_schedule( $hook, $args = array() ) {
	$schedule = false;
	$event    = wp_get_scheduled_event( $hook, $args );

	if ( $event ) {
		$schedule = $event->schedule;
	}

	/**
	 * Filters the schedule name for a hook.
	 *
	 * @since 5.1.0
	 *
	 * @param string|false $schedule Schedule for the hook. False if not found.
	 * @param string       $hook     Action hook to execute when cron is run.
	 * @param array        $args     Arguments to pass to the hook's callback function.
	 */
	return apply_filters( 'get_schedule', $schedule, $hook, $args );
}