WordPress: Function Reference/wp schedule single event:修订间差异

来自站长百科
跳转至: 导航、​ 搜索
 
第40行: 第40行:


== 深入阅读 ==
== 深入阅读 ==
For a comprehensive list of functions, take a look at the [http://codex.wordpress.org/Category:Functions category Functions]


关于完整的函数的列表,请看看[http://codex.wordpress.org/类别:函数类别函数]
关于完整的函数的列表,请看看[http://codex.wordpress.org/类别:函数类别函数]
Also, see [[WordPress:Function_Reference]]


也看看[[WordPress:Function_Reference|Function_Reference]]
也看看[[WordPress:Function_Reference|Function_Reference]]

2008年7月29日 (二) 14:45的最新版本

描述[ ]

确定hook的时间,hook会在你规定的时间由WordPress actions core执行。如果预定的时间过去了,有人访问你的WordPress站点,action就会引起。

用法[ ]

%%% <?php wp_schedule_single_event(time(), 'my_schedule_hook'); ?> %%%

例子[ ]

确定一个小时后的日程[ ]

function do_this_in_an_hour() {
// 执行操作
}
add_action('my_new_event','do_this_in_an_hour');

// 将这一行嵌入函数内部, 
//响应用户执行的某个操作
//否则,访问一个网页,就会确定新的操作安排wp_schedule_single_event(time()+3600, 'my_new_event');

// time()+3600 = 一个小时后。

参数[ ]

深入阅读[ ]

关于完整的函数的列表,请看看[1]

也看看Function_Reference