wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_get_schedule › WordPress Function
Seit2.1.0
Veraltetn/v
› wp_get_schedule ( $hook, $args = array() )
| Parameter: (2) |
|
| Siehe: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Retrieves the name of the recurrence schedule for an event.
Ähnliche Funktionen: wp_get_schedules, wp_next_scheduled, wp_get_scheduled_event, wp_get_theme, wp_get_db_schema
Quellcode
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 );
}