Running WP Cron on multisite the right way
I have WordPress Multisite with several sites. I set up DISABLE_WP_CRON to true in my wp-config.php. If we set up cron task with … Read more
I have WordPress Multisite with several sites. I set up DISABLE_WP_CRON to true in my wp-config.php. If we set up cron task with … Read more
This is kind of a stupid question… I scheduled a action to run every hour: if(!wp_next_scheduled(‘my_hourly_events’)) wp_schedule_event(time(), ‘hourly’, ‘my_hourly_events’); add_action(‘my_hourly_events’, ‘the_function_to_run’); function the_function_to_run(){ … Read more
I’m trying to work which plugin is triggering wp-cron. I know about the code: http://codex.wordpress.org/Function_Reference/wp_get_schedules , but I’d prefer to do something in … Read more