Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <!-- if statement to display content when a single post is being displayed -->
  2. <?php if (is_single()) {
  3. the_content();
  4. }
  5. else {
  6. the_excerpt();
  7. ?>
  8. <a href="<?php the_permalink(); ?>">
  9. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement