Last active
December 2, 2023 18:40
-
-
Save softiconic/e193b9a4b2908647daebbf1a24e228d9 to your computer and use it in GitHub Desktop.
Navigate through custom post types using next and previous functionality.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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