Skip to content

Instantly share code, notes, and snippets.

@matgargano
Created August 26, 2013 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matgargano/6341830 to your computer and use it in GitHub Desktop.
Save matgargano/6341830 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: TEST NOTICE
*/
function test_notice(){
add_action( 'admin_notices', function (){
echo '<div class="updated"><p>Activated</p></div>';
} );
}
register_activation_hook( __FILE__, 'test_notice' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment