I need to create a functionality on a wordpress plugin:
I need to insert a random numbers of time every day some information to a db table.
How would you do this in WordPress?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Take a look at wp_schedule_event its a cronjob.
A cron does run at a regular interval so you have to check the random part during the regular run of the cron
more WP cron:
http://codex.wordpress.org/Category:WP-Cron_Functions
http://wpengineer.com/1908/use-wordpress-cron/ <- tutorial