Advertisement
Viper007Bond

Untitled

Jan 13th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. add_shortcode( 'private', 'cool_private_shortcode' );
  4.  
  5. function cool_private_shortcode( $atts, $content ) {
  6.     if ( is_user_logged_in() ) {
  7.         return $content;
  8.     } else {
  9.         return 'You need to log in to view this content.';
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement