WordPressページにcronジョブを追加するには?WordPressページにcronジョブを追加するには?
私はこのコードを追加してみました:page-price.php
に
<?php
add_filter('cron_schedules', 'isa_add_every_three_minutes');
function isa_add_every_three_minutes($schedules) {
$schedules['every_three_minutes'] = array(
'interval' => 180,
'display' => __('Every 3 Minutes', 'textdomain')
);
return $schedules;
}
// Schedule an action if it's not already scheduled
if (! wp_next_scheduled('isa_add_every_three_minutes')) {
wp_schedule_event(time(), 'every_three_minutes', 'isa_add_every_three_minutes');
}
// Hook into that action that'll fire every three minutes
add_action('isa_add_every_three_minutes', 'every_three_minutes_event_func');
function every_three_minutes_event_func() {
// do something
echo "red";
}
?>
をそれは3分ごとに印刷されなければなりません。
しかし、これは機能しません。
WPとは何ですか?ワードプレス?そして、あなたは、** cron jobs_ **を追加することを意味します、そうですか? –
wordpress --- cronジョブをPagesに追加するwordpress – user3660037