post-siblings-links.php 507 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Prev/next/view all buttons for posts and projects
  4. *
  5. * @package vamtam/consulting
  6. */
  7. $title = '<span class="sibling-title">%title</span>';
  8. ?>
  9. <span class="post-siblings">
  10. <?php
  11. previous_post_link( '%link', vamtam_get_icon_html( array(
  12. 'name' => 'vamtam-theme-arrow-left-sample',
  13. 'link_hover' => false,
  14. ) ) . $title );
  15. next_post_link( '%link', $title . vamtam_get_icon_html( array(
  16. 'name' => 'vamtam-theme-arrow-right-sample',
  17. 'link_hover' => false,
  18. ) ) );
  19. ?>
  20. </span>