System Cron job not firing
You need to first create the interval for 30 mins. Use filter: add_filter(‘cron_schedules’,’my_cron_schedules’, 999 ); function my_cron_schedules($schedules) { $schedules[‘thirty_min’] = array( ‘interval’ => 1800, // Every 30 mins ‘display’ => __( ‘Every 30 mins’ ), ); return $schedules; } Then you need to execute the scheduled job: wp_schedule_event( time(), ‘thirty_min’, ‘your_event_hook’ ); Then add the … Read more