squareread/inc/post-nav.php
Alexander Agnarson 7d92c8febe Initial commit
2021-03-08 18:44:29 +01:00

6 lines
No EOL
445 B
PHP

<?php if ( is_single() ): ?>
<ul class="post-nav group">
<li class="next"><?php next_post_link('%link', '<i class="fas fa-chevron-right"></i><strong>'.esc_html__('Next story', 'squareread').'</strong> <span>%title</span>'); ?></li>
<li class="previous"><?php previous_post_link('%link', '<i class="fas fa-chevron-left"></i><strong>'.esc_html__('Previous story', 'squareread').'</strong> <span>%title</span>'); ?></li>
</ul>
<?php endif; ?>