8 lines
365 B
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( __( '← Older posts', 'foundationpress' ) ); ?></div>
|
||
|
<div class="post-next button"><?php previous_posts_link( __( 'Newer posts →', 'foundationpress' ) ); ?></div>
|
||
|
</nav>
|