Setting the file. One moment.
Skill 14 · Wp Plugin Development
Subchapter 14.3
references/lifecycle.mdMarkdown854 BView on GitHub
Use this file for lifecycle changes and data cleanup.
register_activation_hook( __FILE__, 'callback' )register_deactivation_hook( __FILE__, 'callback' )Guardrails:
init and activation).Upstream reference:
Preferred approaches:
uninstall.php (runs only on uninstall)register_uninstall_hook()Guardrails:
WP_UNINSTALL_PLUGIN before running destructive cleanup.Upstream reference: