ID; //Get the current page to add the notice to global $pagenow; //Make sure we're on the plugins page. if ( $pagenow == 'plugins.php' ) { // If the user hasn't already dismissed our alert, // Output the activation banner if (!get_user_meta($user_id, 'ayomsg_activation_ignore_notice')) { ?>

Thank you for installing Adminyo
Now, your on the way to become the fastest WordPresser out there!','ayomsg');?>

', 'ayomsg'), '?ayomsg_notice_ignore=0');?>
ID; /* If user clicks to ignore the notice, * add that to their user meta * the banner then checks whether this tag * exists already or not. * See here: http://codex.wordpress.org/Function_Reference/add_user_meta */ if ( isset($_GET['ayomsg_notice_ignore']) && '0' == $_GET['ayomsg_notice_ignore'] ) { add_user_meta($user_id, 'ayomsg_activation_ignore_notice', 'true', true); } }; //END of file