1
Làm thế nào để kiểm tra wp_cron?
Đây là một câu hỏi ngu ngốc ... Tôi đã lên lịch một hành động để chạy mỗi giờ: if(!wp_next_scheduled('my_hourly_events')) wp_schedule_event(time(), 'hourly', 'my_hourly_events'); add_action('my_hourly_events', 'the_function_to_run'); function the_function_to_run(){ echo 'it works!'; } Làm thế nào tôi có thể kiểm tra nếu điều này hoạt động mà không phải chờ đợi một …