Check WordPress Cron Job
User function all4cloud_register_personio_cron_job() { // if (!wp_next_scheduled('personio_fetch_jobs')) { wp_schedule_event(time(), 'hourly', 'all4cloud_personio_fetch_jobs'); // } } how to check above cron is working or not Assistant To check if the WordPress cron job (`all4cloud_personio_fetch_jobs`) is working, you can follow these steps: — ### 1. **Verify Scheduled Events** You can use the WP CLI or plugins to confirm […]