Created
November 18, 2020 13:26
-
-
Save gaelbillon/86b57e98b01fcde64dd5c6b606b5b768 to your computer and use it in GitHub Desktop.
Wordpress custom admin notice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************/ | |
/* 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