Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save encoderit-arman/7446c5a8e160d6d6c783e34e47e92abe to your computer and use it in GitHub Desktop.
Save encoderit-arman/7446c5a8e160d6d6c783e34e47e92abe to your computer and use it in GitHub Desktop.
//Saving
add_action('save_post', 'custom_save_function');
//Trashing
add_action('wp_trash_post', 'custom_trash_function');
//Restoring
add_action('untrash_post', 'custom_restore_function');
//Deleting
add_action('delete_post', 'custom_delete_function');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment