Tagged Questions
0
votes
1answer
102 views
Change status of page after an event (Looking for best practice advice)
I'm looking for a best practice/ideas for modifying the status/data of a page after an event.
Here's an example of what I'm trying to accomplish - This WordPress site would allow users to sponsor ...
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');
...