Wordpress users have thousands of themes to choose from. We hunt out the best of the best free and premium themes. You will find best of the best 2 columns, 3 columns, adsense ready, widget ready,
XHTML validated themes. Best themes for Wordpress powered blogs. Download quality and professionally designed Wordpress templates for free at BestWpThemez.com.
Many wordpress users wants to leave private notes on specific posts on their blog which can be only visible by blog admin. In order to do that you need to add this code in functions.php file of your blog:
add_shortcode( ‘note’, ’sc_note’ );
function sc_note( $atts, $content = null ) {
if ( current_user_can( ‘publish_posts’ ) )
return ‘<div>’.$content.’</div>’;
return ”;
}
Now, add this code in the post for which you need to leave the private notes:
[note]
This is a personal note which has added by the blog admin!
[/note]
That’s it!
Thanks,
Shane G.
Popularity: 1%
This entry was posted
on Monday, October 12th, 2009 at 12:57 am and is filed under WordPress KB .
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.