テーマ内でイベントをスケジュールしようとしてfunctions.php
いますが、「起動」できません。Cron View プラグインを使用しており、イベントが正しくスケジュールされていることを示していますが、実行するときに何も起こりませんでした。
これは私のコードです
if ( ! wp_next_scheduled( 'prefix_hourly_event' ) ) {
wp_schedule_event( time(), 'hourly', 'prefixhourlyevent');
}
add_action( 'prefixhourlyevent', 'prefix_do_this_hourly' );
function prefix_do_this_hourly() {
wp_mail('myemail@gmail.com','Cron is working', 'Cron is working: ','','');
}