当我在主插件文件(plugin.php)的顶部安排一个事件时,cron会被添加到wp_options cron
选项中。
wp_schedule_event( time() + 10, 'hourly', 'this_is_my_action' );
这很好用,它添加了新的cron。但是,当我尝试在插件类中的激活函数中使用相同的函数时,它不起作用。
在plugin.php里面我有:
$plugin = new My_Plugin(__FILE__);
$plugin->initialize();
在My_Plugin课程中,我有:
class My_Plugin{
function __construct($plugin_file){
$this->plugin_file = $plugin_file;
}
function initialize(){
register_activation_hook( $this->plugin_file, array( $this, 'register_activation_hook' ) );
}
function register_activation_hook()
{
$this->log( 'Scheduling action.' );
wp_schedule_event( time() + 10, 'hourly', 'this_is_my_action' );
}
function log($message){
/*...*/
}
}
当我激活插件时,日志被写入,但是cron没有被添加到wordpress数据库中。有什么想法吗?
答案 0 :(得分:3)
您需要定义您在预定活动中注册的操作:
class My_Plugin{
function __construct($plugin_file){
$this->plugin_file = $plugin_file;
}
function initialize(){
register_activation_hook( $this->plugin_file, array( $this, 'register_activation_hook' ) );
add_action( 'this_is_my_action', array( $this, 'do_it' );
}
function register_activation_hook()
{
if ( !wp_next_scheduled( 'this_is_my_action' ) ) {
$this->log( 'Scheduling action.' );
wp_schedule_event( time() + 10, 'hourly', 'this_is_my_action' );
}
}
function this_is_my_action(){
//do
}
function log($message){
}
function do_it() {
// This is your scheduled event
}
}
答案 1 :(得分:-2)
试试这个:
class My_Plugin{
function __construct($plugin_file){
$this->plugin_file = $plugin_file;
}
function initialize(){
register_activation_hook( $this->plugin_file, array( $this, 'register_activation_hook' ) );
}
function register_activation_hook()
{
$this->log( 'Scheduling action.' );
wp_schedule_event( time() + 10, 'hourly', array( $this,'this_is_my_action' ));
}
function this_is_my_action(){
//do
}
function log($message){
}
}
您需要将array($this,'name_function')
添加到日程表中。