Sometimes it's necessary to notify authors of something when they next log into your WP administration panel. This code will render a bold message at the top of the page.
Copy and paste the WordPress function into your theme's functions.php
file or, if you sensibly have one installed, your custom functions plugin.
1
<?php
2
/*
3
Admin Dashboard Message
4
http://www.beliefmedia.com/code/wp-snippets/admin-dashboard-message
5
*/
6
7
function beliefmedia_dashboard_mesage($message, $errormsg = false) {
8
$type = ($errormsg !== false) ? '<div id="message" class="updated fade">' : '<div id="message" class="error">';
9
echo '<strong>' . $type . $message . '</strong></div>';
10
}
11
12
function beliefmedia_admin_mesage() {
13
beliefmedia_dashboard_mesage('New version of the Style Guide available. Download <a href="http://www.beliefmedia.com/">here</a>', true);
14
}
15
Example