halilkaya adlı üyeden alıntı: mesajı görüntüle
add_action( 'wpb_custom_cron', 'wpb_custom_cron_func' );
 
function wpb_custom_cron_func() {
  wp_mail( 'you@example.com', 'Automatic email', 'Automatic scheduled email from WordPress to test cron');
}
bu işe yaramıyor mu?

Eklenti için bunu dener misin?

if ( ! wp_next_scheduled( ‘wpb_custom_cron’ ) ) {
wp_schedule_event( time(), ‘hourly’, ‘my_task_hook’ );
}
Bunu eklenti dosyasında ekleyince action hep none oluyor. functions.php'ye ekleyince istediğim oluyor. keşke çalışsa