pre_get_ready_cron_jobs

pre_get_ready_cron_jobs

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('pre_get_ready_cron_jobs') is found 1 times:

  • /wp-includes/cron.php line 1174
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    *
     * @param null|array[] $pre Array of ready cron tasks to return instead. Default null
     *                          to continue using results from _get_cron_array().
     */
    $pre = apply_filters( 'pre_get_ready_cron_jobs', null );
     
    if ( null !== $pre ) {
        return $pre;
    }
     
    $crons    = _get_cron_array();