Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created March 25, 2015 06:20
Show Gist options
  • Save bryceadams/5d72de46666b64ef3229 to your computer and use it in GitHub Desktop.
Save bryceadams/5d72de46666b64ef3229 to your computer and use it in GitHub Desktop.
Stop WordPress auto-emptying the trash
function my_remove_schedule_delete() {
remove_action( 'wp_scheduled_delete', 'wp_scheduled_delete' );
}
add_action( 'init', 'my_remove_schedule_delete' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment