trying to run a cron job with wp-control
-
I have added a hook to functions.php and its corresponding function
[code]
add_action( 'fiveb_cron_daily', 'fiveb_button_cron' );
[/code]The first thing fiveb_button_cron does is write to a file that is has run and then it is supposed to execute another function but it never happens. I have an admin clickable function that is almost exactly the same thing that runs perfectly whenever I click the button in admin (writes to the file and executes function).
Using the plugin wp-control to execute the cron job with settings:
fiveb_cron_daily None fiveb_button_cron() 2019-06-07 01:09:00 (15 hours 53 minutes) Once DailyI am lost on what to do next. I really need this function to run on its own at 1:09 am every morning. Any idea how to proceed would be helpful!!
- The topic ‘trying to run a cron job with wp-control’ is closed to new replies.