Cron job in WordPress not working

前端 未结 2 635
清歌不尽
清歌不尽 2021-01-28 18:59

I have made a WordPress cron job that should send out a mail each hour:

function mail_cron_job() {
     $time = date( \'h:ia\', time() );
       wp_mail( \'****@         


        
2条回答
  •  死守一世寂寞
    2021-01-28 19:39

    you need to use an action hook to tie the event and function together.

    add_action( 'mail_cron_job', 'mail_cron_job' );
    

    You can add that right after the function.

提交回复
热议问题