blogside/inc/post-nav.php
Alexander Agnarson d2dd6684f1 Change theme name
2018-10-31 13:03:44 +01:00

6 lines
No EOL
439 B
PHP

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