wp_clear_scheduled_hook [ WordPress Function ]
wp_clear_scheduled_hook ( $hook, $args = array() )
| Parameters: |
|
| Defined at: |
|
Benzer Fonksiyonlar: wp_next_scheduled, wp_get_schedule, wp_get_schedules, wp_clearcookie, wp_clear_auth_cookie
Unschedule all cron jobs attached to a specific hook.
Source
<?php
function wp_clear_scheduled_hook( $hook, $args = array() ) {
// Backward compatibility
// Previously this function took the arguments as discrete vars rather than an array like the rest of the API
if ( !is_array($args) ) {
_deprecated_argument( __FUNCTION__, '3.0', __('This argument has changed to an array to match the behavior of the other cron functions.') );
$args = array_slice( func_get_args(), 1 );
}
while ( $timestamp = wp_next_scheduled( $hook, $args ) )
wp_unschedule_event( $timestamp, $hook, $args );
}
?>