Skip to content

Instantly share code, notes, and snippets.

@danielstrelec
Last active December 14, 2019 10:04
Show Gist options
  • Save danielstrelec/814cbf25692fe6179430d8d0fa8064f7 to your computer and use it in GitHub Desktop.
Save danielstrelec/814cbf25692fe6179430d8d0fa8064f7 to your computer and use it in GitHub Desktop.
// delete specific post(s)
function wt_cron_delete_posts() {
// wp_delete_post( int $postid, bool $force_delete = false )
wp_delete_post(1);
}
add_action( 'wt_delete_old_posts','wt_cron_delete_posts' );
$args = array( false );
if ( !wp_next_scheduled( 'wt_delete_old_posts', $args ) ) {
// time() + 3600 = one hour from now
wp_schedule_single_event( time() + 3600, 'wt_delete_old_posts' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment