WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
543 | * @since 5.1.0 |
544 | * |
545 | * @param null|false|object $pre Value to return instead. Default null to continue retrieving the event. |
546 | * @param string $hook Action hook of the event. |
547 | * @param array $args Array containing each separate argument to pass to the hook's callback function. |
548 | * Although not passed to a callback, these arguments are used to uniquely identify |
549 | * the event. |
550 | * @param int|null $timestamp Unix timestamp (UTC) of the event. Null to retrieve next scheduled event. |
551 | */ |
552 | $pre = apply_filters( 'pre_get_scheduled_event', null, $hook, $args, $timestamp ); |
553 | if ( null !== $pre ) { |
554 | return $pre; |
555 | } |
556 |
|
557 | if ( null !== $timestamp && ! is_numeric( $timestamp ) ) { |
558 | return false; |
559 | } |
560 |
|
561 | $crons = _get_cron_array(); |