Created
August 31, 2015 18:25
-
-
Save melissajclark/41bd7428fddd7978dd9b to your computer and use it in GitHub Desktop.
Single project pagination
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
<nav class="pagination clearfix singleProjectPagination"> | |
<div class="paginationPreviousProject"><?php previous_post_link( '%link', __( 'Previous Project', 'theme-name' ) ); ?></div> | |
<?php if ( get_field('projects_page_link', 'options') ) : ?> | |
<div class="paginationAllProjects"> | |
<a href="<?php the_field('projects_page_link', 'options'); ?>"><?php _e('Back to Projects', 'theme-name'); ?></a> | |
</div> | |
<?php endif; ?> | |
<div class="paginationNextProject"><?php next_post_link( '%link', __( 'Next Project', 'theme-name' ) ); ?></div> | |
</nav><!-- .pagination --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment