Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <div id="next-prev-links">
  2. <?php
  3. $previous_post = previous_post_link('%link', '', TRUE);
  4. $next_post = next_post_link('%link','', TRUE);
  5. $image_prev = get_post_meta( $previous_post->ID, 'image', true);
  6. $image_next = get_post_meta( $next_post->ID, 'image', true);
  7. ?>
  8.  
  9. <?php if ( $image_prev != '' ) : ?>
  10.   <img src="<?php echo $image_prev; ?>" alt="" />
  11. <?php endif; ?>
  12.  
  13. <?php if ( $image_next != '' ) : ?>
  14.   <img src="<?php echo $image_next; ?>" alt="" />
  15. <?php endif; ?>
  16.  
  17. <?php previous_post_link('%link', 'Previous post', TRUE); ?>
  18. <?php next_post_link('%link', 'Next post', TRUE); ?>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement