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

来自站长百科
跳转至: 导航、​ 搜索
无编辑摘要
第37行: 第37行:




== Further Reading ==
 


== 深入阅读 ==
== 深入阅读 ==

2008年7月29日 (二) 14:42的版本

描述

确定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 = 一个小时后。

参数

深入阅读

For a comprehensive list of functions, take a look at the category Functions

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

Also, see WordPress:Function_Reference

也看看Function_Reference