Skip to content

Instantly share code, notes, and snippets.

@avillegasn
Last active April 3, 2017 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avillegasn/5ea7c46af0b7deb0e9079a36e11afdb9 to your computer and use it in GitHub Desktop.
Save avillegasn/5ea7c46af0b7deb0e9079a36e11afdb9 to your computer and use it in GitHub Desktop.
Schedule a task that executes once in the future at the specified time
<?php
function my_task() {
// Do something. Anything.
}//end my_task()
add_action( 'my_action', 'my_task' );
// Execute my_task one hour from now...
wp_schedule_single_event( time() + 3600, 'my_action' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment