Definition:
function wp_clear_scheduled_hook( $hook, $args = array() {}
Unschedule all cron jobs attached to a specific hook.
Parameters
- string $hook: Action hook, the execution of which will be unscheduled.
- array $args: Optional. Arguments that were to be pass to the hook’s callback function.
Source code
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 );
}
3477

February 12, 2011 


No comments yet... Be the first to leave a reply!