Wp_Schedule_Event her gün belirli bir saatte


9

Her gün saat 16: 20'de fonksiyonumu çalıştırmak için aşağıdaki kodu yazıyorum.

Ama sanırım kodda sorun var ..

çalışmıyor

Dönem zaman damgası: 1427488800

28.03.2015 1:10:00

if( !wp_next_scheduled( 'import_into_db' ) ) {
wp_schedule_event( time('1427488800'), 'daily', 'import_into_db' );

function import_into_db(){

////My code

}
add_action('wp', 'import_into_db');
}

1
time()Fonksiyon, bir giriş argüman almaya çalışmaz strtotime()fonksiyon veya strftime()bir dizesinden özel damgaları oluşturmak yerine işlevi. Ancak zaman damgasına zaten sahipseniz, onlara ihtiyacınız yoktur.
birgire

Yanıtlar:


19

WP Cron, birisi web sitenizi ziyaret ettiğinde çalışır. Eğer kimse ziyaret etmezse, cron asla koşmaz.

Şimdi 2 çözüm var:

  1. WP Cron'u devre dışı bırakın, gerçek bir cron işi kullanın ve özelleştirin.

https://support.hostgator.com/articles/specialized-help/technical/wordpress/how-to-replace-wordpress-cron-with-a-real-cron-job

  1. Özel bir aralık kullanın wp_schedule_event():

    function myprefix_custom_cron_schedule( $schedules ) {
        $schedules['every_six_hours'] = array(
            'interval' => 21600, // Every 6 hours
            'display'  => __( 'Every 6 hours' ),
        );
        return $schedules;
    }
    add_filter( 'cron_schedules', 'myprefix_custom_cron_schedule' );
    
    //Schedule an action if it's not already scheduled
    if ( ! wp_next_scheduled( 'myprefix_cron_hook' ) ) {
        wp_schedule_event( time(), 'every_six_hours', 'myprefix_cron_hook' );
    }
    
    ///Hook into that action that'll fire every six hours
     add_action( 'myprefix_cron_hook', 'myprefix_cron_function' );
    
    //create your function, that runs on cron
    function myprefix_cron_function() {
        //your function...
    }

ve bu tutsları görebilirsiniz

http://www.nextscripts.com/tutorials/wp-cron-scheduling-tasks-in-wordpress/

http://www.iceablethemes.com/optimize-wordpress-replace-wp_cron-real-cron-job/

http://www.smashingmagazine.com/2013/10/16/schedule-events-using-wordpress-cron/

özel Wp cron

http://codex.wordpress.org/Plugin_API/Filter_Reference/cron_schedules

http://www.smashingmagazine.com/2013/10/16/schedule-events-using-wordpress-cron/

http://www.viper007bond.com/2011/12/14/how-to-create-custom-wordpress-cron-intervals/

http://www.sitepoint.com/mastering-wordpress-cron/

https://tommcfarlin.com/wordpress-cron-jobs/

http://www.paulund.co.uk/create-cron-jobs-in-wordpress

cron linux

http://www.cyberciti.biz/faq/how-do-i-add-jobs-to-cron-under-linux-or-unix-oses/

http://www.thesitewizard.com/general/set-cron-job.shtml

http://code.tutsplus.com/tutorials/scheduling-tasks-with-cron-jobs--net-8800

Google arama


12

Time () yerine, günün saatini belirtebilmeniz için strtotime () işlevini kullanın ; günün tarihini belirttiğiniz saatle kullanır. Yani sizin durumunuzda:

strtotime('16:20:00'); // 4:20 PM

İşlevdeki kullanım wp_schedule_eventşöyle görünecektir:

wp_schedule_event( strtotime('16:20:00'), 'daily', 'import_into_db' );

2

1427488800, 27 Mart 2015'e kadar gider, bu nedenle etkinliğiniz henüz başlamaya ayarlanmamıştır.

Ayrıca, planlanan WP etkinliklerinin yalnızca bir kullanıcı siteye o sırada isabet ederse tetikleneceğini unutmayın.


Şimdi, nasıl düzeltilir? @vancoder
Mortzea

0

Bu kod benim için çalışıyor, orijinal soruya daha yakın olduğuna inanıyorum. Yürütmesini istediğiniz zaman için UNIX saat + saat dilimini almak istiyorsunuz. Cron yürütüldüğünde ve WP'den kaldırıldıktan sonra, belirttiğiniz zamanda kendini yeniden oluşturur.

Aşağıdaki örnekte, her sabah 6 am @ AEST (GMT + 10) için çalışıyorum. Bu yüzden her gün GMT 20:00 için planlıyorum.

if (!wp_next_scheduled('cron_name')) {
    $time = strtotime('today'); //returns today midnight
    $time = $time + 72000; //add an offset for the time of day you want, keeping in mind this is in GMT.
    wp_schedule_event($time, 'daily', 'cron_name');
}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.