How to display a notice in the WordPress admin for all users
If you need to display a notice in your wordpress admin to all users, there is a simple method. Just add the following code to your theme’s function.php file.
function this_admin_notice()
{
echo ‘<div class=”updated”>
<p>Whatever HTML</p>
</div>’;
}
add_action(‘admin_notices’, ‘this_admin_notice’);