This repository has been archived on 2021-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
biofriction-web/biofriction-theme/template-parts/navigation-prevnext.php

8 lines
365 B
PHP

<?php
// Display navigation to next previous pages when applicable
?>
<nav id="post-nav" class="post-nav">
<div class="post-previous button"><?php next_posts_link( __( '&larr; Older posts', 'foundationpress' ) ); ?></div>
<div class="post-next button"><?php previous_posts_link( __( 'Newer posts &rarr;', 'foundationpress' ) ); ?></div>
</nav>