Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created October 27, 2014 01:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpspeak/2862bb0f05014ca2a0dc to your computer and use it in GitHub Desktop.
Save wpspeak/2862bb0f05014ca2a0dc to your computer and use it in GitHub Desktop.
Conditionally add admin notes
<?php
//* Conditionally add admin notes
function wpspeak_admin_notice(){
global $pagenow;
if ( $pagenow == 'plugins.php' ) {
echo '<div class="updated">
<p>This notice only appears on the plugins page.</p>
</div>';
}
}
add_action('admin_notices', 'wpspeak_admin_notice');
@wpspeak
Copy link
Author

wpspeak commented Oct 27, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment