wp_schedule_eventでwp_cronに登録はできたのですが、アクションが『!なし』で登録されてしまいます。
フックがうまくいっていない感じなのですが、原因がわかりません。
PHPファイルは『plugins』の中に置いています。
解決方法をご教授いただきたいです。よろしくお願い致します。
PHP
1function auto_stop(){ 2//処理内容は例です。 3 $timestamp = wp_next_scheduled('auto_start_cron'); 4 wp_unschedule_event($timestamp, 'auto_start_cron'); 5} 6 7add_action ('auto_start_cron', 'auto_stop'); 8wp_schedule_event( strtotime('2021-06-16 00:55:00'), 'hourly', 'auto_start_cron' );
あなたの回答
tips
プレビュー