Problem creating cron job wordpress
Here’s the minified reference I use for setting up WordPress cron, which is all from wp_schedule_event() and cron_schedules: Setup Cron // SETUP CRON add_action(‘wp’, ‘myplugin_schedule_cron’); function myplugin_schedule_cron() { if ( !wp_next_scheduled( ‘myplugin_cron’ ) ) wp_schedule_event(time(), ‘daily’, ‘myplugin_cron’); } Cron Function // the CRON hook for firing function add_action(‘myplugin_cron’, ‘myplugin_cron_function’); #add_action(‘wp_head’, ‘myplugin_cron_function’); //test on page load … Read more