Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:40
Show Gist options
  • Save softiconic/e193b9a4b2908647daebbf1a24e228d9 to your computer and use it in GitHub Desktop.
Save softiconic/e193b9a4b2908647daebbf1a24e228d9 to your computer and use it in GitHub Desktop.
Navigate through custom post types using next and previous functionality.
<?php if (is_singular('post_type_here')) { ?>
<div class="sc-nav">
<div class="sc_prev-next"><?php previous_post_link('%link', 'Previous') ?></div>
<div class="sc_prev-next"><?php next_post_link('%link', 'Next') ?></div>
</div><?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment