Tagged Questions
2
votes
1answer
167 views
How Do I Make WordPress Run an Event Every Day?
In a plugin I want to build, it deals with contests. A contest has a date on it. Does WordPress have a feature in it where it can run a piece of code every day without requiring someone to create a ...
8
votes
1answer
3k views
How to test wp_cron?
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');
...
1
vote
1answer
264 views
how to set array of args for scheduled event?
I have a scheduled event that runs twice daily in my plugin, the action is registered with
add_action('fhprw_action','fhprw_check_fetch');
function fhprw_check_fetch($args){
$type=$args['type'];
...