Skip to content

Instantly share code, notes, and snippets.

@gaelbillon
Created November 18, 2020 13:26
Show Gist options
  • Save gaelbillon/86b57e98b01fcde64dd5c6b606b5b768 to your computer and use it in GitHub Desktop.
Save gaelbillon/86b57e98b01fcde64dd5c6b606b5b768 to your computer and use it in GitHub Desktop.
Wordpress custom admin notice
/*************************/
/* Custom admin notice */
/*************************/
// Add temporary dashboard message about plugin_name for team
function plugin_name_admin_notices() {
echo '<div class="notice notice-warning is-dismissible"><p><strong>/!\ @website team /!\</strong>: Please do not use plugin_name for the moment. It is not fully configurated yet. Thanks</p></div>';
}
add_action('admin_notices', 'plugin_name_admin_notices');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment