Guest User

Untitled

a guest
Dec 18th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <a class="button " href="<?php echo get_permalink(get_adjacent_post(true, '', false)->ID)?>">Следующий проект</a>
  2.  
  3. <?php
  4. $next_post_id = get_adjacent_post(true, '', false)->ID;
  5. if($next_post_id != get_the_ID()) : ?>
  6. <a class="button " href="<?php the_permalink($next_post_id)?>">Следующий проект</a>
  7. <?php endif; ?>
  8.  
  9. <?php
  10. $next_post = get_next_post(true);
  11. if($next_post) : ?>
  12. <a class="button " href="<?php the_permalink($next_post)?>">Следующий проект</a>
  13. <?php endif; ?>
Add Comment
Please, Sign In to add comment