Which approach for managing automatic updates would be more robust?
I don’t think your first snippet is doing what you’ve intended. The third argument to wp_schedule_event is a hook name, which in your case is wp_automatic_updater. This means that as soon as this event is fired, it will run: do_action( ‘wp_automatic_updater’ ); From a quick look at the WordPress codebase, I don’t see anything scheduled … Read more