返回介绍

wp_schedule_event()

发布于 2017-09-11 12:48:29 字数 5519 浏览 1025 评论 0 收藏 0

wp_schedule_event( int $timestamp,  string $recurrence,  string $hook,  array $args = array() )

Schedule a recurring event.


description

Schedules a hook which will be executed by the WordPress actions core on a specific interval, specified by you. The action will trigger when someone visits your WordPress site, if the scheduled time has passed.

Valid values for the recurrence are hourly, daily, and twicedaily. These can be extended using the ‘cron_schedules’ filter in wp_get_schedules().

Use wp_next_scheduled() to prevent duplicates


参数

$timestamp

(int) (Required) Unix timestamp (UTC) for when to run the event.

$recurrence

(string) (Required) How often the event should recur.

$hook

(string) (Required) Action hook to execute when event is run.

$args

(array) (Optional) Arguments to pass to the hook's callback function.

Default value: array()


返回值

(false|void) False if the event does not get scheduled.


源代码

File: wp-includes/cron.php

function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array()) {
	// Make sure timestamp is a positive integer
	if ( ! is_numeric( $timestamp ) || $timestamp <= 0 ) {
		return false;
	}

	$crons = _get_cron_array();
	$schedules = wp_get_schedules();

	if ( !isset( $schedules[$recurrence] ) )
		return false;

	$event = (object) array( 'hook' => $hook, 'timestamp' => $timestamp, 'schedule' => $recurrence, 'args' => $args, 'interval' => $schedules[$recurrence]['interval'] );
	/** This filter is documented in wp-includes/cron.php */
	$event = apply_filters( 'schedule_event', $event );

	// A plugin disallowed this event
	if ( ! $event )
		return false;

	$key = md5(serialize($event->args));

	$crons[$event->timestamp][$event->hook][$key] = array( 'schedule' => $event->schedule, 'args' => $event->args, 'interval' => $event->interval );
	uksort( $crons, "strnatcasecmp" );
	_set_cron_array( $crons );
}

更新日志

Versiondescription
2.1.0Introduced.

相关函数

Uses

  • wp-includes/cron.php: _get_cron_array()
  • wp-includes/cron.php: wp_get_schedules()
  • wp-includes/cron.php: _set_cron_array()
  • wp-includes/cron.php: schedule_event
  • wp-includes/plugin.php: apply_filters()

Used By

  • wp-includes/cron.php: wp_reschedule_event()
  • wp-includes/update.php: wp_schedule_update_checks()
  • wp-includes/ms-functions.php: wp_schedule_update_network_counts()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by Codex

    Usage

    <?php wp_schedule_event(time(), 'hourly', 'my_schedule_hook', $args); ?>
  2. Schedule an hourly event
    To schedule an hourly event in a plugin, call wp_schedule_event on activation (otherwise you will end up with a lot of scheduled events!):

    register_activation_hook( __FILE__, 'my_activation' );
    add_action( 'my_hourly_event', 'do_this_hourly' );
    
    function my_activation() {
        wp_schedule_event( time(), 'hourly', 'my_hourly_event' );
    }
    
    function do_this_hourly() {
        // do something every hour
    }

    Don’t forget to clean the scheduler on deactivation:

    register_deactivation_hook( __FILE__, 'my_deactivation' );
    
    function my_deactivation() {
        wp_clear_scheduled_hook( 'my_hourly_event' );
    }

    Schedule hourly event with multiple arguments
    wp_schedule_event() pass arguments by reference, so we have to send multiple data as indexed array.

    register_activation_hook( __FILE__, 'my_activation' );
     
    function my_activation() {
    	$args = array( $args_1, $args_2 );
    	if (! wp_next_scheduled ( 'my_hourly_event', $args )) {
        	wp_schedule_event( time(), 'hourly', 'my_hourly_event', $args );
        }
    }

    Don’t forgot to add total number of argument as $accepted_args on add_action().

    add_action( 'my_hourly_event', 'do_this_hourly', 10, 2 );
    function do_this_hourly($args_1, $args_2 ) {
        // do something every hour
    }

    Don’t forget to clean the scheduler on deactivation:

    register_deactivation_hook( __FILE__, 'my_deactivation' );
     
    function my_deactivation() {
        wp_clear_scheduled_hook( 'my_hourly_event' );
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文