Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Last active February 3, 2021 17:37
Show Gist options
  • Save wpmu-authors/f356a899b7f009d136644383339db4f6 to your computer and use it in GitHub Desktop.
Save wpmu-authors/f356a899b7f009d136644383339db4f6 to your computer and use it in GitHub Desktop.
basic-example.php
register_activation_hook( __FILE__, 'my_plugin_activation' );
function my_plugin_activation() {
add_option( 'my_plugin_activated', time() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment