wp_schedule_event() set daily, but processed every second
Where are you putting the wp_schedule_event() code? My guess is, you have it somewhere that’s causing it to run on every page load, causing the action to be scheduled multiple times (like maybe you just dropped it in your functions.php?). You only need to schedule the action once. The easiest way is to do it … Read more