Advertisement
BakerMan

Protected event message (month/single-event.php)

Oct 2nd, 2013
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <!-- Find this: -->
  2. <?php echo get_the_excerpt() ?>
  3.  
  4. <!-- Change to something like: -->
  5. <?php if ( post_password_required() ) : ?>
  6.     <p> My custom message </p>
  7. <?php else : ?>
  8.     <?php echo get_the_excerpt(); ?>
  9. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement