keralt adlı üyeden alıntı: mesajı görüntüle
wordpress için wpcron kullanan bir eklenti yazıyorum. tema functions.php dosyasına ekleme yapmadan cron schedule ekleyemiyorum ve bu schedule'de action oluşturamıyorum. Alternatif çözümünüz varsa seve seve dinlerim
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’ );
}