If you run a blog with multiple authors, it's often useful to post a specific message to the author of that post on the specific post page. It may include corrections they're required to make, corrections you've made, feedback or more dynamic elements. Usage is via the shortcode of [note]Message to be displayed in here[/note]
inside the actual post content. Colors can obviously be customized.
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
Administrators Only Notes
4
http://www.beliefmedia.com/code/wp-snippets/admin-dashboard-message
5
*/
6
7
function beliefmedia_admin_post_note($atts, $content = null) {
8
global $authordata;
9
10
$authorname = $authordata->display_name;
11
12
return '
13
<p style="padding: 5px 5px 5px 5px; color: #1e0e15; border: #dd4b39 2px solid; background: #f5f5f5"><strong>Admin Message for ' . $authorname . ': </strong>' . $content . '';
14
}
15