Wp_Schedule_Event毎日特定の時間


9

私は毎日16:20に関数を実行するために以下のコードを記述します。

しかし、私はコードの問題だと思います。

働いていない

エポックタイムスタンプ:1427488800

2015年3月28日1:10:00 AM

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()この関数は、入力引数を取るしようとしていないstrtotime()関数またはstrftime()文字列からカスタムタイムスタンプを作成するには、代わりに機能します。ただし、すでにタイムスタンプを取得している場合は必要ありません。
バージニア

回答:


18

WP Cronは、誰かがあなたのウェブサイトにアクセスしたときに実行されます。したがって、誰もアクセスしない場合、cronは実行されません。

現在、2つのソリューションがあります。

  1. WP Cronを無効にし、実際のcronジョブを使用してカスタマイズします。

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

  1. でカスタム間隔を使用します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...
    }

そして、あなたはこれらのタットを見ることができます

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/

カスタム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検索


12

代わりの時間() 、使用のstrtotime()関数で、あなたは一日の時間を指定することができるように-それはあなたが指定した時間で今日の日付を使用します。だからあなたの場合:

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

wp_schedule_event関数の使用法は次のようになります。

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

2

さて、1427488800は2015年3月27日に解決されるため、イベントはまだ開始されていません。

また、スケジュールされたWPイベントは、その時点で誰かがサイトにアクセスした場合にのみ発生することに注意してください。


今、どのように修正しますか?@vancoder
Mortzea

0

このコードは私のために働いています、私はそれが元の質問に近いと思います。実行したいときのUNIX時間+タイムゾーンを取得したい。cronが実行されてWPから削除されると、指定した時刻にcronが再作成されます。

次の例では、毎朝午前6時にAEST(GMT + 10)で機能しています。それで、毎日GMT 20:00にスケジュールします。

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');
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.