Created
November 15, 2012 22:01
-
-
Save Pleiades/4081620 to your computer and use it in GitHub Desktop.
Add Private Notes to Posts
This file contains 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
function sc_note( $atts, $content = null ) { | |
if ( current_user_can( 'publish_posts' ) ) | |
return '<div class="note">'.$content.'</div>'; | |
return ''; | |
} | |
add_shortcode( 'note', 'sc_note' ); |
This file contains 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
[note]<em>Your note text</em>[/note] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment