Cron Job not working
The default supported recurrences are ‘hourly’, ‘twicedaily’, ‘daily’, and ‘weekly’. From the WordPress definition https://developer.wordpress.org/reference/functions/wp_get_schedules/ If you’re using wp_schedule_event(time(), ‘every_minute’, ‘recurring_event’);, you may need to change the recurrence parameter to one of the correct options mentioned above. Refer to the documentation for guidance. To check and trigger your Cron function, you can use a plugin … Read more